├── img ├── v001.png ├── v002.png ├── v003.png ├── v004.png ├── v005.png ├── v005-soft.png └── v004-dimmed.png ├── screenshot.png ├── screenshot-soft.png ├── .github ├── issue_template.md ├── pull_request_template.md └── workflows │ └── ci.yaml ├── .pre-commit-config.yaml ├── LICENSE ├── CHANGELOG.md ├── INSTALL.md ├── README.md ├── dracula-theme.jsonc └── dracula-theme-soft.jsonc /img/v001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gitkraken/HEAD/img/v001.png -------------------------------------------------------------------------------- /img/v002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gitkraken/HEAD/img/v002.png -------------------------------------------------------------------------------- /img/v003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gitkraken/HEAD/img/v003.png -------------------------------------------------------------------------------- /img/v004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gitkraken/HEAD/img/v004.png -------------------------------------------------------------------------------- /img/v005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gitkraken/HEAD/img/v005.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gitkraken/HEAD/screenshot.png -------------------------------------------------------------------------------- /img/v005-soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gitkraken/HEAD/img/v005-soft.png -------------------------------------------------------------------------------- /img/v004-dimmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gitkraken/HEAD/img/v004-dimmed.png -------------------------------------------------------------------------------- /screenshot-soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dracula/gitkraken/HEAD/screenshot-soft.png -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- 1 | > If you're reporting an UI issue, make sure you take a screenshot that shows the actual bug. 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | > If you're fixing a UI issue, make sure you take two screenshots. One that shows the actual bug and another that shows how you fixed it. 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- 1 | name: pre-commit 2 | 3 | on: 4 | pull_request: 5 | push: 6 | branches: [master, main] 7 | 8 | jobs: 9 | pre-commit: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v3 13 | - uses: actions/setup-python@v3 14 | - uses: pre-commit/action@v3.0.0 15 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | repos: 2 | - repo: https://github.com/pre-commit/pre-commit-hooks 3 | rev: v4.5.0 4 | hooks: 5 | - id: check-yaml 6 | - id: check-json 7 | - id: end-of-file-fixer 8 | - id: trailing-whitespace 9 | - id: mixed-line-ending 10 | - id: check-merge-conflict 11 | - repo: https://github.com/executablebooks/mdformat 12 | rev: 0.7.17 13 | hooks: 14 | - id: mdformat 15 | args: [--check] 16 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2021 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 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## v0.4.0 4 | 5 | - Updated version of 🧛🏻‍♂️ Dark theme for [GitKraken](https://www.gitkraken.com/) for version `9.9.0` with two modes `Dracula` and `Dracula Dimmed`. 6 | 7 | ### `Dracula` 8 | 9 | ![img][4_1] 10 | 11 | ### `Dracula Dimmed` 12 | 13 | ![img][4_2] 14 | 15 | ## v0.3.0 16 | 17 | ______________________________________________________________________ 18 | 19 | - Updated version of 🧛🏻‍♂️ Dark theme for [GitKraken](https://www.gitkraken.com/) 20 | 21 | ![img][3] 22 | 23 | ## v0.2.0 24 | 25 | ______________________________________________________________________ 26 | 27 | - Updated version of 🧛🏻‍♂️ Dark theme for [GitKraken](https://www.gitkraken.com/) 28 | 29 | ![img][2] 30 | 31 | ## v0.1.0 32 | 33 | ______________________________________________________________________ 34 | 35 | - Initial release 🧛🏻‍♂️ Dark theme for [GitKraken](https://www.gitkraken.com/) 36 | 37 | ![img][1] 38 | 39 | [1]: img/v001.png "GitKraken Dark theme" 40 | [2]: img/v002.png "GitKraken Dark theme" 41 | [3]: img/v003.png "GitKraken Dark theme" 42 | [4_1]: img/v004.png "GitKraken Dark theme" 43 | [4_2]: img/v004-dimmed.png "GitKraken Dark theme - Dimmed" 44 | -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- 1 | ### [GitKraken](https://www.gitkraken.com) 2 | 3 | #### Install using Git 4 | 5 | If you are a git user, you can install the theme and keep up to date by cloning the repo: 6 | 7 | ``` 8 | git clone https://github.com/dracula/gitkraken.git 9 | ``` 10 | 11 | #### Install manually 12 | 13 | Download using the [GitHub .zip download](https://github.com/dracula/gitkraken/archive/master.zip) option and unzip them. 14 | 15 | #### Install using [Homebrew](https://brew.sh) 16 | 17 | Easily install from [dracula/homebrew-install](https://github.com/dracula/homebrew-install/blob/master/Casks/dracula-gitkraken.rb): 18 | 19 | ```sh 20 | brew tap dracula/install 21 | brew install --cask dracula-gitkraken 22 | ``` 23 | 24 | #### Activating theme 25 | 26 | 1. Copy `dracula-theme.jsonc` and `dracula-theme-dimmed.jsonc` to the theme folder: 27 | 1. In Windows will be `C:\Users\USER\AppData\Roaming\.gitkraken\themes` 28 | 1. In MacOS/Linux will be `~/.gitkraken/themes` 29 | 1. Then go to `Preferences > UI Customization > Theme` 30 | 1. Choose `Dracula` or `Dracula Dimmed` from the dropdown menu 31 | 32 | See also: [GitKraken Custom-Themes](https://support.gitkraken.com/start-here/themes/) 33 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dracula for [GitKraken](https://www.gitkraken.com) 2 | 3 | > A dark theme for [GitKraken](https://www.gitkraken.com). 4 | 5 | ## Modes 6 | 7 | This theme comes in two variants, `Dracula` and `Dracula Soft`. 8 | 9 | ### Dracula 10 | 11 | ![Screenshot](./screenshot.png) 12 | 13 | ### Dracula Soft 14 | 15 | ![Screenshot](./screenshot-soft.png) 16 | 17 | ## Install 18 | 19 | All instructions can be found at [draculatheme.com/gitkraken](https://draculatheme.com/gitkraken). 20 | 21 | ## Team 22 | 23 | This theme is maintained by the following person(s) and a bunch of [awesome contributors](https://github.com/dracula/gitkraken/graphs/contributors). 24 | 25 | | [![Anselm Hahn](https://github.com/anselmoo.png?size=100)](https://github.com/anselmoo) | 26 | | --------------------------------------------------------------------------------------- | 27 | | [Anselm Hahn](https://github.com/anselmoo) | 28 | 29 | ## Community 30 | 31 | - [Twitter](https://twitter.com/draculatheme) - Best for getting updates about themes and new stuff. 32 | - [GitHub](https://github.com/dracula/dracula-theme/discussions) - Best for asking questions and discussing issues. 33 | - [Discord](https://draculatheme.com/discord-invite) - Best for hanging out with the community. 34 | 35 | ## License 36 | 37 | [MIT License](./LICENSE) 38 | -------------------------------------------------------------------------------- /dracula-theme.jsonc: -------------------------------------------------------------------------------- 1 | { 2 | "meta": { 3 | "name": "Dracula", 4 | "scheme": "dark" // must be "light" or "dark" 5 | }, 6 | "themeValues": { 7 | // values applied to the entire app 8 | "root": { 9 | "red": "#ff5555", 10 | "orange": "#ffb86c", 11 | "yellow": "#f1fa8c", 12 | "green": "#50fa7b", 13 | "teal": "#8be9fd", 14 | "blue": "#bd93f9", 15 | "ltblue": "#8be9fd", 16 | "purple": "#ff79c6", 17 | "white": "#FFFFFF", 18 | "black": "#000000", 19 | "app__bg0": "#282a36", 20 | "toolbar__bg0": "#44475a", 21 | "toolbar__bg1": "#44475a", 22 | "toolbar__bg2": "#44475a", 23 | "panel__bg0": "#282a36", 24 | "panel__bg1": "#44475a", 25 | "panel__bg2": "#44475a", 26 | "glass": "#1a1a1a", 27 | "glass-inverse-10": "#e5e7eb", 28 | "glass-inverse-5": "#d1d5db", 29 | "input__bg": "#44475a", 30 | "input-bg-warn-color": "#ffb86c", 31 | "panel-accent": "#bd93f9", 32 | "panel-border": "#44475a", 33 | "section-border": "#44475a", 34 | "subtle-border": "#44475a", 35 | "modal-overlay-color": "#1a1a1a", 36 | // graph colors 37 | "graph-color-0": "#8be9fd", 38 | "graph-color-1": "#50fa7b", 39 | "graph-color-2": "#ff79c6", 40 | "graph-color-3": "#bd93f9", 41 | "graph-color-4": "#f1fa8c", 42 | "graph-color-5": "#ffb86c", 43 | "graph-color-6": "#ff5555", 44 | "graph-color-7": "#8be9fd", 45 | "graph-color-8": "#50fa7b", 46 | "graph-color-9": "#ff79c6", 47 | "stats-added-color": "#50fa7b", 48 | "stats-deleted-color": "#ff5555", 49 | "stats-files-color": "#f1fa8c", 50 | // text colors 51 | // values starting with . aren't added to the CSS, they're just variables 52 | ".text-color": "#f8f8f2", 53 | "text-selected": "@.text-color", 54 | "text-normal": "#f8f8f2", 55 | "text-secondary": "#a7aabc", 56 | "text-disabled": "#6272a4", 57 | "text-accent": "#bd93f9", 58 | "text-inverse": "#222222", 59 | "text-bright": "@.text-color", 60 | "text-dimmed": "#424450", 61 | "text-dimmed-selected": "#6272a4", 62 | "text-selected-row": "@text-selected", 63 | 64 | // First Time UX Variables 65 | "gkftux-teal": "#8be9fd", // Dracula cyan 66 | "gkftux-bg": "#282a36", // Dracula background 67 | "gkftux-getstarted-bg": "#282a36", // Dracula background 68 | "gkftux-getstarted-bg-hover": "#44475a", // Dracula current line color 69 | "gkftux-getstarted-border": "#44475a", // Dracula current line color 70 | "gkftux-getstarted-icon": "#8be9fd", // Dracula cyan 71 | "gkftux-repo-tab-border": "#44475a", // Dracula current line color 72 | "gkftux-repo-tab-border-selected": "#8be9fd", // Dracula cyan 73 | "gkftux-repo-tab-bg": "transparent", 74 | "gkftux-repo-tab-bg-selected": "#282a36", // Dracula background 75 | "gkftux-repo-tab-icon": "#6272a4", // Dracula comment color 76 | "gkftux-repo-tab-icon-selected": "#8be9fd", // Dracula cyan 77 | 78 | // buttons 79 | "btn-text": "@text-normal", 80 | "btn-text-hover": "@text-selected", 81 | "default-border": "@text-normal", 82 | "default-bg": "transparent", 83 | "default-hover": "transparent", 84 | "default-border-hover": "@text-selected", 85 | "primary-border": "#bd93f9", 86 | "primary-bg": "#343746", 87 | "primary-hover": "#424450", 88 | "success-border": "#50fa7b", 89 | "success-bg": "#343746", 90 | "success-hover": "#424450", 91 | "warning-border": "#ffb86c", 92 | "warning-bg": "#343746", 93 | "warning-hover": "#424450", 94 | "danger-border": "#ff5555", 95 | "danger-bg": "#343746", 96 | "danger-hover": "#424450", 97 | // states 98 | "hover-row": "#343746", 99 | "danger-row": "#424450", 100 | "selected-row": "#44475a", 101 | "selected-row-border": "none", 102 | "warning-row": "#424450", 103 | "droppable": "#424450", 104 | "drop-target": "#44475a", 105 | "input--disabled": "#6272a4", 106 | "link-color": "#8be9fd", 107 | "link-color-bright": "#8be9fd", 108 | "form-control-focus": "#bd93f9", 109 | // various app elements 110 | "scroll-thumb-border": "transparent", 111 | "scroll-thumb-bg": "#6272a4", 112 | "scroll-thumb-bg-light": "#424450", 113 | "wip-status": "#44475a", 114 | "card__bg": "#44475a", 115 | "card-shadow": "#1a1a1a", 116 | "statusbar__warning-bg": "#424450", 117 | "label__yellow-color": "#f1fa8c", 118 | "label__light-blue-color": "#8be9fd", 119 | "label__purple-color": "#ff79c6", 120 | // component states 121 | "filtering": "#44475a", 122 | "soloing": "#424450", 123 | "checked-out": "#343746", 124 | "soloed": "#424450", 125 | "filter-match": "#44475a", 126 | "clone__progress": "#44475a", 127 | "toolbar__prompt": "#343746", 128 | "verified": "#343746", 129 | "unverified": "#6272a4", 130 | "drop-sort-border": "#50fa7b", 131 | // terminal 132 | "terminal__repo-name-color": "#8be9fd", 133 | "terminal__repo-branch-color": "#ff79c6", 134 | "terminal__repo-tag-color": "#ffb86c", 135 | "terminal__repo-upstream-color": "#f1fa8c", 136 | "terminal__background": "#282a36", 137 | "terminal__cursor": "#f8f8f2", 138 | "terminal__cursorAccent": "#282a36", 139 | "terminal__foreground": "#f8f8f2", 140 | "terminal__selection": "#44475a", 141 | "terminal__black": "#282a36", 142 | "terminal__red": "#ff5555", 143 | "terminal__green": "#50fa7b", 144 | "terminal__yellow": "#f1fa8c", 145 | "terminal__blue": "#bd93f9", 146 | "terminal__magenta": "#ff79c6", 147 | "terminal__cyan": "#8be9fd", 148 | "terminal__white": "#f8f8f2", 149 | "terminal__brightBlack": "#6272a4", 150 | "terminal__brightRed": "#ff6e6e", 151 | "terminal__brightGreen": "#69ff94", 152 | "terminal__brightYellow": "#ffffa5", 153 | "terminal__brightBlue": "#d6acff", 154 | "terminal__brightMagenta": "#ff92df", 155 | "terminal__brightCyan": "#a4ffff", 156 | "terminal__brightWhite": "#ffffff", 157 | // code editor 158 | "code-bg": "#282a36", 159 | "code-foreground": "#f8f8f2", 160 | "code-blame-color-0": "#8be9fd", 161 | "code-blame-color-1": "#50fa7b", 162 | "code-blame-color-2": "#ff79c6", 163 | "code-blame-color-3": "#bd93f9", 164 | "code-blame-color-4": "#f1fa8c", 165 | "code-blame-color-5": "#ffb86c", 166 | "code-blame-color-6": "#ff5555", 167 | "code-blame-color-7": "#8be9fd", 168 | "code-blame-color-8": "#50fa7b", 169 | "code-blame-color-9": "#ff79c6", 170 | "added-line": "#343746", 171 | "deleted-line": "#424450", 172 | "modified-line": "#44475a", 173 | "conflict-info-color": "#8be9fd", 174 | "conflict-left-border-color": "#8be9fd", 175 | "conflict-left-color": "#343746", 176 | "conflict-right-border-color": "#ffb86c", 177 | "conflict-right-color": "#424450", 178 | "conflict-output-border-color": "#ff79c6", 179 | "conflict-output-color": "#44475a" 180 | }, 181 | // override specific values just for the toolbar 182 | "toolbar": { 183 | "text-selected": "#f8f8f2", 184 | "text-normal": "#f8f8f2", 185 | "text-secondary": "#a7aabc", 186 | "text-disabled": "#6272a4", 187 | "section-border": "#6272a4", 188 | "input__bg": "#44475a", 189 | "link-color": "#8be9fd", 190 | "btn-text": "var(--text-normal)" 191 | }, 192 | // override specific values just for the tabs bar 193 | "tabsbar": { 194 | "text-selected": "#f8f8f2", 195 | "text-normal": "#f8f8f2", 196 | "text-secondary": "#a7aabc", 197 | "text-disabled": "#6272a4", 198 | "section-border": "#6272a4", 199 | "input__bg": "#44475a", 200 | "link-color": "#8be9fd", 201 | "btn-text": "var(--text-normal)" 202 | } 203 | } 204 | } 205 | -------------------------------------------------------------------------------- /dracula-theme-soft.jsonc: -------------------------------------------------------------------------------- 1 | { 2 | "meta": { 3 | "name": "Dracula - Dimmed", 4 | "scheme": "dark" 5 | }, 6 | "themeValues": { 7 | "root": { 8 | "red": "#ff5555", 9 | "orange": "#ffb86c", 10 | "yellow": "#f1fa8c", 11 | "green": "#50fa7b", 12 | "teal": "#8be9fd", 13 | "blue": "#bd93f9", 14 | "ltblue": "#8be9fd", 15 | "purple": "#ff79c6", 16 | "white": "#FFFFFF", 17 | "black": "#000000", 18 | "app__bg0": "#1a1c23", 19 | "toolbar__bg0": "#2c2e34", 20 | "toolbar__bg1": "#2c2e34", 21 | "toolbar__bg2": "#2c2e34", 22 | "panel__bg0": "#1a1c23", 23 | "panel__bg1": "#2c2e34", 24 | "panel__bg2": "#2c2e34", 25 | "glass": "#141516", 26 | "glass-inverse-10": "#d1d5db", 27 | "glass-inverse-5": "#9ca3af", 28 | "input__bg": "#2c2e34", 29 | "input-bg-warn-color": "#d19a66", 30 | "panel-accent": "#c678dd", 31 | "panel-border": "#2c2e34", 32 | "section-border": "#2c2e34", 33 | "subtle-border": "#2c2e34", 34 | "modal-overlay-color": "#141516", 35 | "graph-color-0": "#56b6c2", 36 | "graph-color-1": "#98c379", 37 | "graph-color-2": "#c678dd", 38 | "graph-color-3": "#c678dd", 39 | "graph-color-4": "#e5c07b", 40 | "graph-color-5": "#d19a66", 41 | "graph-color-6": "#e06c75", 42 | "graph-color-7": "#56b6c2", 43 | "graph-color-8": "#98c379", 44 | "graph-color-9": "#c678dd", 45 | "stats-added-color": "#98c379", 46 | "stats-deleted-color": "#e06c75", 47 | "stats-files-color": "#e5c07b", 48 | ".text-color": "#d4d4d4", 49 | "text-selected": "@.text-color", 50 | "text-normal": "#c8c8c8", 51 | "text-secondary": "#9ca3af", 52 | "text-disabled": "#6b7280", 53 | "text-accent": "#c678dd", 54 | "text-inverse": "#1a1c23", 55 | "text-bright": "@.text-color", 56 | "text-dimmed": "#4b5563", 57 | "text-dimmed-selected": "#6b7280", 58 | "text-selected-row": "@text-selected", 59 | "gkftux-teal": "#5c6370", // More muted comment color 60 | "gkftux-bg": "#1d1e25", // Darker background with better separation from other elements 61 | "gkftux-getstarted-bg": "#1d1e25", // Darker background 62 | "gkftux-getstarted-bg-hover": "#2c2e34", // Muted hover state 63 | "gkftux-getstarted-border": "#2c2e34", // More muted border 64 | "gkftux-getstarted-icon": "#5c6370", // More muted icon 65 | "gkftux-repo-tab-border": "#2c2e34", // More muted border 66 | "gkftux-repo-tab-border-selected": "#5c6370", // More muted selected border 67 | "gkftux-repo-tab-bg": "transparent", 68 | "gkftux-repo-tab-bg-selected": "#1d1e25", // Darker background 69 | "gkftux-repo-tab-icon": "#4b5563", // More muted icon 70 | "gkftux-repo-tab-icon-selected": "#5c6370", // More muted selected icon 71 | "btn-text": "@text-normal", 72 | "btn-text-hover": "@text-selected", 73 | "default-border": "@text-normal", 74 | "default-bg": "transparent", 75 | "default-hover": "transparent", 76 | "default-border-hover": "@text-selected", 77 | "primary-border": "#c678dd", 78 | "primary-bg": "#252831", 79 | "primary-hover": "#2c2e34", 80 | "success-border": "#98c379", 81 | "success-bg": "#252831", 82 | "success-hover": "#2c2e34", 83 | "warning-border": "#d19a66", 84 | "warning-bg": "#252831", 85 | "warning-hover": "#2c2e34", 86 | "danger-border": "#e06c75", 87 | "danger-bg": "#252831", 88 | "danger-hover": "#2c2e34", 89 | "hover-row": "#252831", 90 | "danger-row": "#2c2e34", 91 | "selected-row": "#2c2e34", 92 | "selected-row-border": "none", 93 | "warning-row": "#2c2e34", 94 | "droppable": "#252831", 95 | "drop-target": "#2c2e34", 96 | "input--disabled": "#6b7280", 97 | "link-color": "#56b6c2", 98 | "link-color-bright": "#56b6c2", 99 | "form-control-focus": "#c678dd", 100 | "scroll-thumb-border": "transparent", 101 | "scroll-thumb-bg": "#6b7280", 102 | "scroll-thumb-bg-light": "#4b5563", 103 | "wip-status": "#2c2e34", 104 | "card__bg": "#2c2e34", 105 | "card-shadow": "#111213", 106 | "statusbar__warning-bg": "#2c2e34", 107 | "label__yellow-color": "#e5c07b", 108 | "label__light-blue-color": "#56b6c2", 109 | "label__purple-color": "#c678dd", 110 | "filtering": "#2c2e34", 111 | "soloing": "#252831", 112 | "checked-out": "#252831", 113 | "soloed": "#252831", 114 | "filter-match": "#2c2e34", 115 | "clone__progress": "#2c2e34", 116 | "toolbar__prompt": "#252831", 117 | "verified": "#252831", 118 | "unverified": "#6b7280", 119 | "drop-sort-border": "#98c379", 120 | "terminal__repo-name-color": "#56b6c2", 121 | "terminal__repo-branch-color": "#c678dd", 122 | "terminal__repo-tag-color": "#d19a66", 123 | "terminal__repo-upstream-color": "#e5c07b", 124 | "terminal__background": "#1a1c23", 125 | "terminal__cursor": "#d4d4d4", 126 | "terminal__cursorAccent": "#1a1c23", 127 | "terminal__foreground": "#d4d4d4", 128 | "terminal__selection": "#2c2e34", 129 | "terminal__black": "#1a1c23", 130 | "terminal__red": "#e06c75", 131 | "terminal__green": "#98c379", 132 | "terminal__yellow": "#e5c07b", 133 | "terminal__blue": "#c678dd", 134 | "terminal__magenta": "#c678dd", 135 | "terminal__cyan": "#56b6c2", 136 | "terminal__white": "#d4d4d4", 137 | "terminal__brightBlack": "#5c6370", 138 | "terminal__brightRed": "#e5858b", 139 | "terminal__brightGreen": "#a8d28f", 140 | "terminal__brightYellow": "#ebd091", 141 | "terminal__brightBlue": "#d188e3", 142 | "terminal__brightMagenta": "#d188e3", 143 | "terminal__brightCyan": "#6cc6d2", 144 | "terminal__brightWhite": "#ffffff", 145 | "code-bg": "#1a1c23", 146 | "code-foreground": "#d4d4d4", 147 | "code-blame-color-0": "#56b6c2", 148 | "code-blame-color-1": "#98c379", 149 | "code-blame-color-2": "#c678dd", 150 | "code-blame-color-3": "#c678dd", 151 | "code-blame-color-4": "#e5c07b", 152 | "code-blame-color-5": "#d19a66", 153 | "code-blame-color-6": "#e06c75", 154 | "code-blame-color-7": "#56b6c2", 155 | "code-blame-color-8": "#98c379", 156 | "code-blame-color-9": "#c678dd", 157 | "added-line": "#252831", 158 | "deleted-line": "#2c2e34", 159 | "modified-line": "#2c2e34", 160 | "conflict-info-color": "#56b6c2", 161 | "conflict-left-border-color": "#56b6c2", 162 | "conflict-left-color": "#252831", 163 | "conflict-right-border-color": "#d19a66", 164 | "conflict-right-color": "#2c2e34", 165 | "conflict-output-border-color": "#c678dd", 166 | "conflict-output-color": "#2c2e34" 167 | }, 168 | "toolbar": { 169 | "text-selected": "#d4d4d4", 170 | "text-normal": "#c8c8c8", 171 | "text-secondary": "#9ca3af", 172 | "text-disabled": "#6b7280", 173 | "section-border": "#6b7280", 174 | "input__bg": "#2c2e34", 175 | "link-color": "#56b6c2", 176 | "btn-text": "var(--text-normal)" 177 | }, 178 | "tabsbar": { 179 | "text-selected": "#d4d4d4", 180 | "text-normal": "#c8c8c8", 181 | "text-secondary": "#9ca3af", 182 | "text-disabled": "#6b7280", 183 | "section-border": "#6b7280", 184 | "input__bg": "#2c2e34", 185 | "link-color": "#56b6c2", 186 | "btn-text": "var(--text-normal)" 187 | } 188 | } 189 | } 190 | --------------------------------------------------------------------------------