├── .gitignore ├── INSTALL.md ├── LICENSE ├── README.md ├── dracula-pro.png ├── images ├── icon128.png ├── icon16.png ├── icon48.png ├── theme_toolbar.png └── theme_toolbar_transparent.png ├── manifest.json └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.idea/ 3 | -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- 1 | ### [Google Chrome](https://chrome.google.com/webstore/detail/dracula-chrome-theme-dark/gfapcejdoghpoidkfodoiiffaaibpaem) 2 | 3 | #### Install 4 | 5 | 1. Install theme through the [Google Chrome Store](https://chrome.google.com/webstore/detail/dracula-chrome-theme-dark/gfapcejdoghpoidkfodoiiffaaibpaem). 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Dracula Theme 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dracula for [Google Chrome](https://chrome.google.com/webstore/detail/dracula-chrome-theme-dark/gfapcejdoghpoidkfodoiiffaaibpaem) 2 | 3 | > A dark theme for [Google Chrome](https://chrome.google.com/webstore/detail/dracula-chrome-theme-dark/gfapcejdoghpoidkfodoiiffaaibpaem). 4 | 5 | ![Screenshot](./screenshot.png) 6 | 7 | ## Install 8 | 9 | All instructions can be found at [draculatheme.com/chrome](https://draculatheme.com/chrome). 10 | 11 | ## Team 12 | 13 | This theme is maintained by the following person(s) and a bunch of [awesome contributors](https://github.com/orgs/dracula/people) 14 | 15 | | [![Nick](https://avatars2.githubusercontent.com/u/9289704?v=3&s=70)](https://github.com/ukarim) | 16 | | ----------------------------------------------------------------------------------------------- | 17 | | [Nick](https://github.com/nickimola) | 18 | 19 | ## Community 20 | 21 | - [Twitter](https://twitter.com/draculatheme) - Best for getting updates about themes and new stuff. 22 | - [GitHub](https://github.com/dracula/dracula-theme/discussions) - Best for asking questions and discussing issues. 23 | - [Discord](https://draculatheme.com/discord-invite) - Best for hanging out with the community. 24 | 25 | ## Dracula PRO 26 | 27 | [![Dracula PRO](./dracula-pro.png)](https://draculatheme.com/pro) 28 | 29 | ## License 30 | 31 | [MIT License](./LICENSE) 32 | -------------------------------------------------------------------------------- /dracula-pro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/google-chrome/b1e6ae2dd47525e52aa3dbe73bf6341ce5292b01/dracula-pro.png -------------------------------------------------------------------------------- /images/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/google-chrome/b1e6ae2dd47525e52aa3dbe73bf6341ce5292b01/images/icon128.png -------------------------------------------------------------------------------- /images/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/google-chrome/b1e6ae2dd47525e52aa3dbe73bf6341ce5292b01/images/icon16.png -------------------------------------------------------------------------------- /images/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/google-chrome/b1e6ae2dd47525e52aa3dbe73bf6341ce5292b01/images/icon48.png -------------------------------------------------------------------------------- /images/theme_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/google-chrome/b1e6ae2dd47525e52aa3dbe73bf6341ce5292b01/images/theme_toolbar.png -------------------------------------------------------------------------------- /images/theme_toolbar_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/google-chrome/b1e6ae2dd47525e52aa3dbe73bf6341ce5292b01/images/theme_toolbar_transparent.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "manifest_version": 3, 3 | "name": "Dracula Chrome Theme", 4 | "description": "A dark and minimal color theme for Google Chrome.", 5 | "version": "3.2", 6 | "icons": { 7 | "16": "images/icon16.png", 8 | "48": "images/icon48.png", 9 | "128": "images/icon128.png" 10 | }, 11 | "theme": { 12 | "colors": { 13 | "frame": [23, 24, 30], 14 | "frame_inactive": [23, 24, 30], 15 | "frame_incognito": [25, 26, 33], 16 | "frame_incognito_inactive": [25, 26, 33], 17 | "bookmark_text": [248, 248, 242], 18 | "tab_background_text": [98, 114, 164], 19 | "tab_background_text_inactive": [98, 114, 164], 20 | "tab_background_text_incognito": [98, 114, 164], 21 | "tab_background_text_incognito_inactive": [98, 114, 164], 22 | "tab_text": [248, 248, 242], 23 | "toolbar": [68, 71, 90], 24 | "toolbar_button_icon": [248, 248, 242], 25 | "omnibox_text": [248, 248, 242], 26 | "omnibox_background": [33, 34, 44], 27 | "ntp_background": [40, 42, 54], 28 | "ntp_link": [139, 233, 253], 29 | "ntp_text": [248, 248, 242] 30 | }, 31 | "images": { 32 | "theme_toolbar": "images/theme_toolbar_transparent.png", 33 | "theme_tab_background": "images/theme_toolbar.png" 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/google-chrome/b1e6ae2dd47525e52aa3dbe73bf6341ce5292b01/screenshot.png --------------------------------------------------------------------------------