├── .gitignore ├── README.md ├── adverts └── stackoverflow │ ├── opsdroid-banner-ad.jpg │ ├── stackoverflow.png │ └── stackoverflow.pxd ├── banners ├── 2021_try_now_half_page.png ├── 2021_try_now_half_page.svg ├── banner-eye-dark-trans-offset.png ├── banner-eye-dark-trans-offset.svg ├── banner-eye-dark-trans.png ├── banner-eye-dark-trans.svg ├── banner-eye-dark.png ├── banner-eye-dark.svg ├── banner-eye-light.png ├── banner-eye-light.svg ├── banner-eye-transparent.png ├── banner-eye-transparent.svg ├── banner-light-logo.png ├── banner-light-logo.svg ├── opsdroid-chatbot-framework-banner.png ├── try_now_half_page.png └── try_now_leaderboard.png ├── community ├── logos │ ├── logo_dark-frame.png │ └── logo_dark-frame.svg └── stickers │ └── hacktoberfest19 │ ├── Better-Boy │ ├── Sticker_Better-Boy.jpg │ └── Sticker_Better-Boy.svg │ ├── Ifeanyiekperi │ ├── 20191014_215352.png │ ├── 20191014_215352.svg │ └── Hacktoberfest entry │ ├── README.md │ ├── Ujjwaldeep │ ├── Ujjwaldeep.md │ ├── sticker.png │ └── sticker.svg │ ├── ajbox │ ├── sticker.png │ └── sticker.svg │ ├── blindingstars │ ├── sticker-blindingstars.png │ └── sticker-blindingstars.svg │ └── iiCe89 │ ├── Sticker_submission_iiCe89.png │ └── Sticker_submission_iiCe89.svg └── logos ├── README.md ├── logo-audio-light.png ├── logo-dark.png ├── logo-dark.svg ├── logo-hass-light.png ├── logo-hass-light.svg ├── logo-light.png ├── logo-light.svg ├── logo-maintainer-light.png ├── logo-maintainer-light.svg ├── logo-wide-light.png ├── logo-wide-light.svg └── mono ├── README.md ├── logo-maintainer-mono-light.png ├── logo-maintainer-mono-light.svg ├── logo-mono-dark.png ├── logo-mono-dark.svg ├── logo-mono-light.png ├── logo-mono-light.svg ├── logo-wide-mono-light.png └── logo-wide-mono-light.svg /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Style Guidelines 2 | 3 | This repository contains information on how to create opsdroid related media. This is intended for use in: 4 | 5 | * Social media 6 | * Website 7 | * Press/Media 8 | * Promotion 9 | 10 | ## Logos 11 | 12 | ![Logo Wide Light](logos/logo-wide-light.png) 13 | 14 | You will find a selection of logo variations in [logos](logos). 15 | 16 | ## Colours 17 | 18 | * Blue `#176587` 19 | * Green `#22B573` 20 | -------------------------------------------------------------------------------- /adverts/stackoverflow/opsdroid-banner-ad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/adverts/stackoverflow/opsdroid-banner-ad.jpg -------------------------------------------------------------------------------- /adverts/stackoverflow/stackoverflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/adverts/stackoverflow/stackoverflow.png -------------------------------------------------------------------------------- /adverts/stackoverflow/stackoverflow.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/adverts/stackoverflow/stackoverflow.pxd -------------------------------------------------------------------------------- /banners/2021_try_now_half_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/banners/2021_try_now_half_page.png -------------------------------------------------------------------------------- /banners/banner-eye-dark-trans-offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/banners/banner-eye-dark-trans-offset.png -------------------------------------------------------------------------------- /banners/banner-eye-dark-trans-offset.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 17 | 18 | -------------------------------------------------------------------------------- /banners/banner-eye-dark-trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/banners/banner-eye-dark-trans.png -------------------------------------------------------------------------------- /banners/banner-eye-dark-trans.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 17 | 18 | -------------------------------------------------------------------------------- /banners/banner-eye-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/banners/banner-eye-dark.png -------------------------------------------------------------------------------- /banners/banner-eye-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 18 | 19 | -------------------------------------------------------------------------------- /banners/banner-eye-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/banners/banner-eye-light.png -------------------------------------------------------------------------------- /banners/banner-eye-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 17 | 18 | -------------------------------------------------------------------------------- /banners/banner-eye-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/banners/banner-eye-transparent.png -------------------------------------------------------------------------------- /banners/banner-eye-transparent.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 16 | 17 | -------------------------------------------------------------------------------- /banners/banner-light-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/banners/banner-light-logo.png -------------------------------------------------------------------------------- /banners/banner-light-logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /banners/opsdroid-chatbot-framework-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/banners/opsdroid-chatbot-framework-banner.png -------------------------------------------------------------------------------- /banners/try_now_half_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/banners/try_now_half_page.png -------------------------------------------------------------------------------- /banners/try_now_leaderboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/banners/try_now_leaderboard.png -------------------------------------------------------------------------------- /community/logos/logo_dark-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/community/logos/logo_dark-frame.png -------------------------------------------------------------------------------- /community/logos/logo_dark-frame.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | 10 | 23 | 63 | 68 | 70 | 75 | 76 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | -------------------------------------------------------------------------------- /community/stickers/hacktoberfest19/Better-Boy/Sticker_Better-Boy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/community/stickers/hacktoberfest19/Better-Boy/Sticker_Better-Boy.jpg -------------------------------------------------------------------------------- /community/stickers/hacktoberfest19/Ifeanyiekperi/20191014_215352.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/community/stickers/hacktoberfest19/Ifeanyiekperi/20191014_215352.png -------------------------------------------------------------------------------- /community/stickers/hacktoberfest19/Ifeanyiekperi/20191014_215352.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | Created by potrace 1.13, written by Peter Selinger 2001-2015 9 | 10 | 12 | 80 | 150 | 161 | 165 | 179 | 380 | 383 | 386 | 389 | 392 | 394 | 397 | 403 | 410 | 416 | 434 | 504 | 526 | 583 | 586 | 589 | 591 | 593 | 595 | 597 | 599 | 601 | 603 | 644 | 647 | 650 | 652 | 655 | 657 | 660 | 661 | 662 | -------------------------------------------------------------------------------- /community/stickers/hacktoberfest19/Ifeanyiekperi/Hacktoberfest entry: -------------------------------------------------------------------------------- 1 | my submission 2 | -------------------------------------------------------------------------------- /community/stickers/hacktoberfest19/README.md: -------------------------------------------------------------------------------- 1 | # Hactoberfest 2019 opsdroid sticker competition 2 | 3 | Thank you to everyone who submitted their entry for the [opsdroid 2019 Hacktoberfest sticker competition](https://github.com/opsdroid/style-guidelines/issues/3). 4 | 5 | Congratulations to our winner [blindingstars](https://github.com/blindingstars) from [northxsouthco](https://github.com/northxsouthco)! 6 | 7 | | User | Design | 8 | |------|--------| 9 | | 🏆 **Winner**

[blindingstars](https://github.com/blindingstars) from [northxsouthco](https://github.com/northxsouthco) | ![](https://github.com/opsdroid/style-guidelines/raw/master/stickers/hacktoberfest19/blindingstars/sticker-blindingstars.png) | 10 | | [ajbox](https://github.com/ajbox) | ![](https://github.com/opsdroid/style-guidelines/raw/master/stickers/hacktoberfest19/ajbox/sticker.png) | 11 | | [Better-Boy](https://github.com/Better-Boy) | ![](https://github.com/opsdroid/style-guidelines/raw/master/stickers/hacktoberfest19/Better-Boy/Sticker_Better-Boy.jpg) | 12 | | [IfeanyiEkperi](https://github.com/IfeanyiEkperi) | ![](https://github.com/opsdroid/style-guidelines/raw/master/stickers/hacktoberfest19/Ifeanyiekperi/20191014_215352.png) | 13 | | [iiCe89](https://github.com/iiCe89) | ![](https://github.com/opsdroid/style-guidelines/raw/master/stickers/hacktoberfest19/iiCe89/Sticker_submission_iiCe89.png) | 14 | | [Ujjwaldeep](https://github.com/udz-codes) | ![](https://github.com/opsdroid/style-guidelines/raw/master/stickers/hacktoberfest19/Ujjwaldeep/sticker.png) | -------------------------------------------------------------------------------- /community/stickers/hacktoberfest19/Ujjwaldeep/Ujjwaldeep.md: -------------------------------------------------------------------------------- 1 | # Here is my submission for the competition! 2 | 3 | ![]() 4 | -------------------------------------------------------------------------------- /community/stickers/hacktoberfest19/Ujjwaldeep/sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/community/stickers/hacktoberfest19/Ujjwaldeep/sticker.png -------------------------------------------------------------------------------- /community/stickers/hacktoberfest19/ajbox/sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/community/stickers/hacktoberfest19/ajbox/sticker.png -------------------------------------------------------------------------------- /community/stickers/hacktoberfest19/blindingstars/sticker-blindingstars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/community/stickers/hacktoberfest19/blindingstars/sticker-blindingstars.png -------------------------------------------------------------------------------- /community/stickers/hacktoberfest19/iiCe89/Sticker_submission_iiCe89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/community/stickers/hacktoberfest19/iiCe89/Sticker_submission_iiCe89.png -------------------------------------------------------------------------------- /logos/README.md: -------------------------------------------------------------------------------- 1 | # Logos 2 | 3 | Logos are currently available in `png` and `svg` format in light and dark colours. 4 | 5 | ![Small Light](logo-light.png) 6 | ![Small Dark](logo-dark.png) 7 | ![Wide Light](logo-wide-light.png) 8 | ![Audio Light](logo-audio-light.png) 9 | ![Maintainer Light](logo-maintainer-light.png) 10 | ![Hass Light](logo-hass-light.png) 11 | -------------------------------------------------------------------------------- /logos/logo-audio-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/logos/logo-audio-light.png -------------------------------------------------------------------------------- /logos/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/logos/logo-dark.png -------------------------------------------------------------------------------- /logos/logo-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 14 | 19 | 23 | 37 | 38 | -------------------------------------------------------------------------------- /logos/logo-hass-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/logos/logo-hass-light.png -------------------------------------------------------------------------------- /logos/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/logos/logo-light.png -------------------------------------------------------------------------------- /logos/logo-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 13 | 18 | 22 | 36 | 37 | -------------------------------------------------------------------------------- /logos/logo-maintainer-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/logos/logo-maintainer-light.png -------------------------------------------------------------------------------- /logos/logo-maintainer-light.svg: -------------------------------------------------------------------------------- 1 | 2 | image/svg+xml -------------------------------------------------------------------------------- /logos/logo-wide-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/logos/logo-wide-light.png -------------------------------------------------------------------------------- /logos/logo-wide-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 19 | 20 | 21 | 27 | 28 | 29 | 34 | 35 | 36 | 43 | 44 | 45 | 50 | 51 | 52 | 58 | 59 | 60 | 66 | 67 | 68 | 70 | 71 | 72 | 77 | 78 | 79 | 83 | 87 | 100 | 101 | -------------------------------------------------------------------------------- /logos/mono/README.md: -------------------------------------------------------------------------------- 1 | # Mono Logos 2 | 3 | Mono Logos are currently available in `png` and `svg` format in light and dark colours. Suitable for night/dark theme. 4 | 5 | ![Small Light](logo-mono-light.png) 6 | ![Small Dark](logo-mono-dark.png) 7 | ![Wide Light](logo-wide-mono-light.png) 8 | ![Maintainer Light](logo-maintainer-mono-light.png) 9 | -------------------------------------------------------------------------------- /logos/mono/logo-maintainer-mono-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/logos/mono/logo-maintainer-mono-light.png -------------------------------------------------------------------------------- /logos/mono/logo-mono-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/logos/mono/logo-mono-dark.png -------------------------------------------------------------------------------- /logos/mono/logo-mono-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 28 | 29 | 30 | 31 | 32 | 249 | 250 | 251 | 252 | -------------------------------------------------------------------------------- /logos/mono/logo-mono-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/logos/mono/logo-mono-light.png -------------------------------------------------------------------------------- /logos/mono/logo-mono-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 194 | 195 | 196 | 197 | 198 | 330 | 331 | 332 | 333 | -------------------------------------------------------------------------------- /logos/mono/logo-wide-mono-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opsdroid/style-guidelines/47912154a019a40b14d3d07f9375321e5bec6420/logos/mono/logo-wide-mono-light.png -------------------------------------------------------------------------------- /logos/mono/logo-wide-mono-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | 209 | 210 | 211 | 212 | 213 | 351 | 352 | 353 | 354 | --------------------------------------------------------------------------------