├── README.md ├── selenized-offwhite.yaml ├── configs ├── selenized-offwhite-ghostty.config ├── selenized-offwhite-fish.fish ├── selenized-offwhite-iterm2.itermcolors └── selenized-offwhite-vscode.json └── LICENSE.md /README.md: -------------------------------------------------------------------------------- 1 | An ever so slightly offwhite version of [selenized](https://github.com/jan-warchol/selenized). -------------------------------------------------------------------------------- /selenized-offwhite.yaml: -------------------------------------------------------------------------------- 1 | system: "base16" 2 | name: "selenized-offwhite" 3 | author: "Made slightly offwhite by Brenton Cleeland / Original by Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali" 4 | variant: "light" 5 | palette: 6 | base00: "fafafa" 7 | base01: "ebebeb" 8 | base02: "cdcdcd" 9 | base03: "878787" 10 | base04: "878787" 11 | base05: "474747" 12 | base06: "282828" 13 | base07: "282828" 14 | base08: "bf0000" 15 | base09: "ba3700" 16 | base0A: "af8500" 17 | base0B: "008400" 18 | base0C: "009a8a" 19 | base0D: "0054cf" 20 | base0E: "6b40c3" 21 | base0F: "dd0f9d" -------------------------------------------------------------------------------- /configs/selenized-offwhite-ghostty.config: -------------------------------------------------------------------------------- 1 | background = #fafafa 2 | foreground = #474747 3 | 4 | selection-background = #cdcdcd 5 | selection-foreground = #fafafa 6 | 7 | palette = 0=#fafafa 8 | palette = 1=#bf0000 9 | palette = 2=#008400 10 | palette = 3=#af8500 11 | palette = 4=#0054cf 12 | palette = 5=#6b40c3 13 | palette = 6=#009a8a 14 | palette = 7=#474747 15 | palette = 8=#878787 16 | palette = 9=#bf0000 17 | palette = 10=#008400 18 | palette = 11=#af8500 19 | palette = 12=#0054cf 20 | palette = 13=#6b40c3 21 | palette = 14=#009a8a 22 | palette = 15=#282828 23 | palette = 16=#ba3700 24 | palette = 17=#dd0f9d 25 | palette = 18=#ebebeb 26 | palette = 19=#cdcdcd 27 | palette = 20=#878787 28 | palette = 21=#282828 29 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Brenton Cleeland 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. -------------------------------------------------------------------------------- /configs/selenized-offwhite-fish.fish: -------------------------------------------------------------------------------- 1 | # base16-fish (https://github.com/tomyun/base16-fish) 2 | # based on base16-shell (https://github.com/chriskempson/base16-shell) 3 | # selenized-offwhite scheme by Made slightly offwhite by Brenton Cleeland / Original by Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali 4 | 5 | function base16-selenized-offwhite -d "selenized-offwhite" 6 | set color00 fa/fa/fa # Base 00 - Black 7 | set color01 bf/00/00 # Base 08 - Red 8 | set color02 00/84/00 # Base 0B - Green 9 | set color03 af/85/00 # Base 0A - Yellow 10 | set color04 00/54/cf # Base 0D - Blue 11 | set color05 6b/40/c3 # Base 0E - Magenta 12 | set color06 00/9a/8a # Base 0C - Cyan 13 | set color07 47/47/47 # Base 05 - White 14 | set color08 87/87/87 # Base 03 - Bright Black 15 | set color09 $color01 # Base 08 - Bright Red 16 | set color10 $color02 # Base 0B - Bright Green 17 | set color11 $color03 # Base 0A - Bright Yellow 18 | set color12 $color04 # Base 0D - Bright Blue 19 | set color13 $color05 # Base 0E - Bright Magenta 20 | set color14 $color06 # Base 0C - Bright Cyan 21 | set color15 28/28/28 # Base 07 - Bright White 22 | set color16 ba/37/00 # Base 09 23 | set color17 dd/0f/9d # Base 0F 24 | set color18 eb/eb/eb # Base 01 25 | set color19 cd/cd/cd # Base 02 26 | set color20 87/87/87 # Base 04 27 | set color21 28/28/28 # Base 06 28 | set colorfg $color07 # Base 05 - White 29 | set colorbg $color00 # Base 00 - Black 30 | 31 | if test -n "$TMUX" 32 | # Tell tmux to pass the escape sequences through 33 | # (Source: http://permalink.gmane.org/gmane.comp.terminal-emulators.tmux.user/1324) 34 | function put_template; printf '\033Ptmux;\033\033]4;%d;rgb:%s\033\033\\\033\\' $argv; end; 35 | function put_template_var; printf '\033Ptmux;\033\033]%d;rgb:%s\033\033\\\033\\' $argv; end; 36 | function put_template_custom; printf '\033Ptmux;\033\033]%s%s\033\033\\\033\\' $argv; end; 37 | else if string match 'screen*' $TERM # [ "${TERM%%[-.]*}" = "screen" ] 38 | # GNU screen (screen, screen-256color, screen-256color-bce) 39 | function put_template; printf '\033P\033]4;%d;rgb:%s\007\033\\' $argv; end; 40 | function put_template_var; printf '\033P\033]%d;rgb:%s\007\033\\' $argv; end; 41 | function put_template_custom; printf '\033P\033]%s%s\007\033\\' $argv; end; 42 | else if string match 'linux*' $TERM # [ "${TERM%%-*}" = "linux" ] 43 | function put_template; test $argv[1] -lt 16 && printf "\e]P%x%s" $argv[1] (echo $argv[2] | sed 's/\///g'); end; 44 | function put_template_var; true; end; 45 | function put_template_custom; true; end; 46 | else 47 | function put_template; printf '\033]4;%d;rgb:%s\033\\' $argv; end; 48 | function put_template_var; printf '\033]%d;rgb:%s\033\\' $argv; end; 49 | function put_template_custom; printf '\033]%s%s\033\\' $argv; end; 50 | end 51 | 52 | # 16 color space 53 | put_template 0 $color00 54 | put_template 1 $color01 55 | put_template 2 $color02 56 | put_template 3 $color03 57 | put_template 4 $color04 58 | put_template 5 $color05 59 | put_template 6 $color06 60 | put_template 7 $color07 61 | put_template 8 $color08 62 | put_template 9 $color09 63 | put_template 10 $color10 64 | put_template 11 $color11 65 | put_template 12 $color12 66 | put_template 13 $color13 67 | put_template 14 $color14 68 | put_template 15 $color15 69 | 70 | # 256 color space 71 | put_template 16 $color16 72 | put_template 17 $color17 73 | put_template 18 $color18 74 | put_template 19 $color19 75 | put_template 20 $color20 76 | put_template 21 $color21 77 | 78 | # foreground / background / cursor color 79 | if test -n "$ITERM_SESSION_ID" 80 | # iTerm2 proprietary escape codes 81 | put_template_custom Pg 474747 # foreground 82 | put_template_custom Ph fafafa # background 83 | put_template_custom Pi 474747 # bold color 84 | put_template_custom Pj cdcdcd # selection color 85 | put_template_custom Pk 474747 # selected text color 86 | put_template_custom Pl 474747 # cursor 87 | put_template_custom Pm fafafa # cursor text 88 | else 89 | put_template_var 10 $colorfg 90 | if [ "$BASE16_SHELL_SET_BACKGROUND" != false ] 91 | put_template_var 11 $colorbg 92 | if string match 'rxvt*' $TERM # [ "${TERM%%-*}" = "rxvt" ] 93 | put_template_var 708 $colorbg # internal border (rxvt) 94 | end 95 | end 96 | put_template_custom 12 ";7" # cursor (reverse video) 97 | end 98 | 99 | # set syntax highlighting colors 100 | set -U fish_color_autosuggestion cdcdcd 101 | set -U fish_color_cancel -r 102 | set -U fish_color_command green #white 103 | set -U fish_color_comment cdcdcd 104 | set -U fish_color_cwd green 105 | set -U fish_color_cwd_root red 106 | set -U fish_color_end brblack #blue 107 | set -U fish_color_error red 108 | set -U fish_color_escape yellow #green 109 | set -U fish_color_history_current --bold 110 | set -U fish_color_host normal 111 | set -U fish_color_match --background=brblue 112 | set -U fish_color_normal normal 113 | set -U fish_color_operator blue #green 114 | set -U fish_color_param 878787 115 | set -U fish_color_quote yellow #brblack 116 | set -U fish_color_redirection cyan 117 | set -U fish_color_search_match bryellow --background=cdcdcd 118 | set -U fish_color_selection white --bold --background=cdcdcd 119 | set -U fish_color_status red 120 | set -U fish_color_user brgreen 121 | set -U fish_color_valid_path --underline 122 | set -U fish_pager_color_completion normal 123 | set -U fish_pager_color_description yellow --dim 124 | set -U fish_pager_color_prefix white --bold #--underline 125 | set -U fish_pager_color_progress brwhite --background=cyan 126 | 127 | # remember current theme 128 | set -U base16_theme selenized-offwhite 129 | 130 | # clean up 131 | functions -e put_template put_template_var put_template_custom 132 | end 133 | -------------------------------------------------------------------------------- /configs/selenized-offwhite-iterm2.itermcolors: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | Ansi 0 Color 12 | 13 | Color Space 14 | sRGB 15 | Blue Component 16 | 0.9803921568627451 17 | Green Component 18 | 0.9803921568627451 19 | Red Component 20 | 0.9803921568627451 21 | 22 | Ansi 1 Color 23 | 24 | Color Space 25 | sRGB 26 | Blue Component 27 | 0.0 28 | Green Component 29 | 0.0 30 | Red Component 31 | 0.7490196078431373 32 | 33 | Ansi 10 Color 34 | 35 | Color Space 36 | sRGB 37 | Blue Component 38 | 0.0 39 | Green Component 40 | 0.5176470588235295 41 | Red Component 42 | 0.0 43 | 44 | Ansi 11 Color 45 | 46 | Color Space 47 | sRGB 48 | Blue Component 49 | 0.0 50 | Green Component 51 | 0.5215686274509804 52 | Red Component 53 | 0.6862745098039216 54 | 55 | Ansi 12 Color 56 | 57 | Color Space 58 | sRGB 59 | Blue Component 60 | 0.8117647058823529 61 | Green Component 62 | 0.32941176470588235 63 | Red Component 64 | 0.0 65 | 66 | Ansi 13 Color 67 | 68 | Color Space 69 | sRGB 70 | Blue Component 71 | 0.7647058823529411 72 | Green Component 73 | 0.25098039215686274 74 | Red Component 75 | 0.4196078431372549 76 | 77 | Ansi 14 Color 78 | 79 | Color Space 80 | sRGB 81 | Blue Component 82 | 0.5411764705882353 83 | Green Component 84 | 0.6039215686274509 85 | Red Component 86 | 0.0 87 | 88 | Ansi 15 Color 89 | 90 | Color Space 91 | sRGB 92 | Blue Component 93 | 0.1568627450980392 94 | Green Component 95 | 0.1568627450980392 96 | Red Component 97 | 0.1568627450980392 98 | 99 | Ansi 2 Color 100 | 101 | Color Space 102 | sRGB 103 | Blue Component 104 | 0.0 105 | Green Component 106 | 0.5176470588235295 107 | Red Component 108 | 0.0 109 | 110 | Ansi 3 Color 111 | 112 | Color Space 113 | sRGB 114 | Blue Component 115 | 0.0 116 | Green Component 117 | 0.5215686274509804 118 | Red Component 119 | 0.6862745098039216 120 | 121 | Ansi 4 Color 122 | 123 | Color Space 124 | sRGB 125 | Blue Component 126 | 0.8117647058823529 127 | Green Component 128 | 0.32941176470588235 129 | Red Component 130 | 0.0 131 | 132 | Ansi 5 Color 133 | 134 | Color Space 135 | sRGB 136 | Blue Component 137 | 0.7647058823529411 138 | Green Component 139 | 0.25098039215686274 140 | Red Component 141 | 0.4196078431372549 142 | 143 | Ansi 6 Color 144 | 145 | Color Space 146 | sRGB 147 | Blue Component 148 | 0.5411764705882353 149 | Green Component 150 | 0.6039215686274509 151 | Red Component 152 | 0.0 153 | 154 | Ansi 7 Color 155 | 156 | Color Space 157 | sRGB 158 | Blue Component 159 | 0.1568627450980392 160 | Green Component 161 | 0.1568627450980392 162 | Red Component 163 | 0.1568627450980392 164 | 165 | Ansi 8 Color 166 | 167 | Color Space 168 | sRGB 169 | Blue Component 170 | 0.803921568627451 171 | Green Component 172 | 0.803921568627451 173 | Red Component 174 | 0.803921568627451 175 | 176 | Ansi 9 Color 177 | 178 | Color Space 179 | sRGB 180 | Blue Component 181 | 0.0 182 | Green Component 183 | 0.0 184 | Red Component 185 | 0.7490196078431373 186 | 187 | Background Color 188 | 189 | Color Space 190 | sRGB 191 | Blue Component 192 | 0.9803921568627451 193 | Green Component 194 | 0.9803921568627451 195 | Red Component 196 | 0.9803921568627451 197 | 198 | Bold Color 199 | 200 | Color Space 201 | sRGB 202 | Blue Component 203 | 0.2784313725490196 204 | Green Component 205 | 0.2784313725490196 206 | Red Component 207 | 0.2784313725490196 208 | 209 | Cursor Color 210 | 211 | Color Space 212 | sRGB 213 | Blue Component 214 | 0.2784313725490196 215 | Green Component 216 | 0.2784313725490196 217 | Red Component 218 | 0.2784313725490196 219 | 220 | Cursor Text Color 221 | 222 | Color Space 223 | sRGB 224 | Blue Component 225 | 0.9803921568627451 226 | Green Component 227 | 0.9803921568627451 228 | Red Component 229 | 0.9803921568627451 230 | 231 | Foreground Color 232 | 233 | Color Space 234 | sRGB 235 | Blue Component 236 | 0.2784313725490196 237 | Green Component 238 | 0.2784313725490196 239 | Red Component 240 | 0.2784313725490196 241 | 242 | Selected Text Color 243 | 244 | Color Space 245 | sRGB 246 | Blue Component 247 | 0.2784313725490196 248 | Green Component 249 | 0.2784313725490196 250 | Red Component 251 | 0.2784313725490196 252 | 253 | Selection Color 254 | 255 | Color Space 256 | sRGB 257 | Blue Component 258 | 0.803921568627451 259 | Green Component 260 | 0.803921568627451 261 | Red Component 262 | 0.803921568627451 263 | 264 | 265 | 266 | -------------------------------------------------------------------------------- /configs/selenized-offwhite-vscode.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "vscode://schemas/color-theme", 3 | "name": "Base16 selenized-offwhite", 4 | "type": "light", 5 | "colors": { 6 | // Contrast colors 7 | // "contrastActiveBorder": "#f00", //7 8 | // "contrastBorder": "#f00", //6 9 | 10 | // Base colors 11 | // "focusBorder": "#f00", //7 12 | "foreground": "#474747", //5 13 | "disabledForeground": "#878787", //4 14 | "widget.shadow": "#fafafa", //0 15 | "selection.background": "#0054cf", //D 16 | "descriptionForeground": "#878787", //3 17 | "errorForeground": "#bf0000", //8 18 | "icon.foreground": "#878787", //4 19 | // "sash.hoverBorder": "#ff0000", 20 | 21 | // Window border 22 | // "window.activeBorder": "#f00", 23 | // "window.inactiveBorder": "#f00", 24 | 25 | // Text colors 26 | "textBlockQuote.background": "#ebebeb", //1 27 | "textBlockQuote.border": "#0054cf", //D 28 | "textCodeBlock.background": "#fafafa", //0 29 | "textLink.activeForeground": "#009a8a", //C 30 | "textLink.foreground": "#0054cf", //D 31 | "textPreformat.foreground": "#0054cf", //D 32 | "textSeparator.foreground": "#f0f", 33 | 34 | // Action colors 35 | "toolbar.hoverBackground": "#cdcdcd", //2 36 | // "toolbar.hoverOutline": "#ff0000", 37 | "toolbar.activeBackground": "#878787", //3 38 | 39 | // Button control 40 | "button.background": "#0054cf", //D 41 | "button.foreground": "#282828", //7 42 | // "button.border": "#ff0000", 43 | "button.hoverBackground": "#878787", //4 44 | "button.secondaryForeground": "#282828", //7 45 | "button.secondaryBackground": "#6b40c3", //E 46 | "button.secondaryHoverBackground": "#878787", //4 47 | "checkbox.background": "#fafafa", //0 48 | "checkbox.foreground": "#474747", //5 49 | // "checkbox.border": "#f00", 50 | 51 | // Dropdown control 52 | "dropdown.background": "#fafafa", //0 53 | "dropdown.listBackground": "#fafafa", //0 54 | // "dropdown.border": "#f00", //2 55 | "dropdown.foreground": "#474747", //5 56 | 57 | // Input control 58 | "input.background": "#fafafa", //0 59 | // "input.border": "#f00", //0 60 | "input.foreground": "#474747", //5 61 | "input.placeholderForeground": "#878787", //3 62 | "inputOption.activeBackground": "#cdcdcd", //2 63 | "inputOption.activeBorder": "#ba3700", //9 64 | "inputOption.activeForeground": "#474747", //5 65 | "inputValidation.errorBackground": "#bf0000", //8 66 | "inputValidation.errorForeground": "#474747", //5 67 | "inputValidation.errorBorder": "#bf0000", //8 68 | "inputValidation.infoBackground": "#0054cf", //D 69 | "inputValidation.infoForeground": "#474747", //5 70 | "inputValidation.infoBorder": "#0054cf", //D 71 | "inputValidation.warningBackground": "#af8500", //A 72 | "inputValidation.warningForeground": "#474747", //5 73 | "inputValidation.warningBorder": "#af8500", //A 74 | 75 | // Scrollbar control 76 | "scrollbar.shadow": "#ebebeb", //1 77 | "scrollbarSlider.activeBackground": "#8787876f", //4 78 | "scrollbarSlider.background": "#cdcdcd6f", //2 79 | "scrollbarSlider.hoverBackground": "#8787876f", //3 80 | 81 | // Badge 82 | "badge.background": "#fafafa", //0 83 | "badge.foreground": "#474747", //5 84 | 85 | // Progress bar 86 | "progressBar.background": "#878787", //3 87 | 88 | // Lists and trees 89 | "list.activeSelectionBackground": "#cdcdcd", //2 90 | "list.activeSelectionForeground": "#474747", //5 91 | "list.dropBackground": "#282828", //7 92 | "list.focusBackground": "#cdcdcd", //2 93 | "list.focusForeground": "#474747", //5 94 | "list.highlightForeground": "#282828", //7 95 | "list.hoverBackground": "#878787", //3 96 | "list.hoverForeground": "#474747", //5 97 | "list.inactiveSelectionBackground": "#cdcdcd", //2 98 | "list.inactiveSelectionForeground": "#474747", //5 99 | "list.inactiveFocusBackground": "#cdcdcd", //2 100 | "list.invalidItemForeground": "#bf0000", //8 101 | "list.errorForeground": "#bf0000", //8 102 | "list.warningForeground": "#af8500", //A 103 | "listFilterWidget.background": "#fafafa", //0 104 | // "listFilterWidget.outline": "#f00", 105 | "listFilterWidget.noMatchesOutline": "#bf0000", //8 106 | "list.filterMatchBackground": "#cdcdcd", //2 107 | // "list.filterMatchBorder": "#f00", 108 | "tree.indentGuidesStroke": "#474747", //5 109 | // "list.deemphasizedForeground": "#ff0000", 110 | 111 | // Activity Bar 112 | "activityBar.background": "#fafafa", //0 113 | // Below is no longer supported as of 1.52 114 | "activityBar.dropBackground": "#282828", //7 115 | // Above is no longer supported as of 1.52 116 | // "activityBar.dropBorder": "#ff0000", 117 | "activityBar.foreground": "#474747", //5 118 | "activityBar.inactiveForeground": "#878787", //3 119 | // "activityBar.border": "#f00", //0 120 | "activityBarBadge.background": "#0054cf", //D 121 | "activityBarBadge.foreground": "#282828", //7 122 | // "activityBar.activeBorder": "#f00", 123 | "activityBar.activeBackground": "#cdcdcd", //2 124 | // "activityBar.activeFocusBorder": "#ff0000", 125 | 126 | // Side Bar 127 | "sideBar.background": "#ebebeb", //1 128 | "sideBar.foreground": "#474747", //5 129 | // "sideBar.border": "#f00", //1 130 | "sideBar.dropBackground": "#cdcdcd6f", //2 131 | "sideBarTitle.foreground": "#474747", //5 132 | "sideBarSectionHeader.background": "#878787", //3 133 | "sideBarSectionHeader.foreground": "#474747", //5 134 | // "sidebarSectionHeader.border": "#f00", 135 | 136 | //Minimap 137 | "minimap.findMatchHighlight": "#af85006f", //A 138 | "minimap.selectionHighlight": "#cdcdcd6f", //2 139 | "minimap.errorHighlight": "#bf0000", //8 140 | "minimap.warningHighlight": "#af8500", //A 141 | "minimap.background": "#fafafa", //0 142 | "minimap.selectionOccurrenceHighlight": "#878787", //3 143 | // "minimap.foregroundOpacity": "#ff0000", 144 | // "minimapSlider.background": "#f00", 145 | // "minimapSlider.hoverBackground": "#f00", 146 | // "minimapSlider.activeBackground": "#f00", 147 | "minimapGutter.addedBackground": "#008400", //B 148 | "minimapGutter.modifiedBackground": "#6b40c3", //E 149 | "minimapGutter.deletedBackground": "#bf0000", //8 150 | 151 | // Editor Groups & Tabs 152 | // Below is no longer supported as of 1.24 153 | "editorGroup.background": "#fafafa", //0 154 | // Above is no longer supported as of 1.24 155 | // "editorGroup.border": "#f00", 156 | "editorGroup.dropBackground": "#cdcdcd6f", //2 157 | "editorGroupHeader.noTabsBackground": "#ebebeb", //1 158 | "editorGroupHeader.tabsBackground": "#ebebeb", //1 159 | // "editorGroupHeader.tabsBorder": "#f00", 160 | // "editorGroupHeader.border": "#ff0000", 161 | "editorGroup.emptyBackground": "#fafafa", //0 162 | // "editorGroup.focusedEmptyBorder": "#f00" 163 | "editorGroup.dropIntoPromptForeground": "#282828", //5 164 | "editorGroup.dropIntoPromptBackground": "#fafafa", //0 165 | // "editorGroup.dropIntoPromptBorder": "#ff0000", 166 | "tab.activeBackground": "#fafafa", //0 167 | "tab.unfocusedActiveBackground": "#fafafa", //0 168 | "tab.activeForeground": "#474747", //5 169 | // "tab.border": "#f00", 170 | // "tab.unfocusedActiveBorder": "#f00", 171 | // "tab.activeBorderTop": "#f00", 172 | // "tab.unfocusedActiveBorderTop": "#f00", 173 | // "tab.lastPinnedBorder": "#ff0000", 174 | "tab.inactiveBackground": "#ebebeb", //1 175 | // "tab.unfocusedInactiveBackground": "#ff0000", 176 | "tab.inactiveForeground": "#878787", //3 177 | "tab.unfocusedActiveForeground": "#878787", //4 178 | "tab.unfocusedInactiveForeground": "#878787", //3 179 | "tab.hoverBackground": "#cdcdcd", //2 180 | "tab.unfocusedHoverBackground": "#cdcdcd", //2 181 | // "tab.hoverForeground": "#ff0000", 182 | // "tab.unfocusedHoverForeground": "#ff0000", 183 | // "tab.hoverBorder": "#f00", 184 | // "tab.unfocusedHoverBorder": "#f00", 185 | "tab.activeModifiedBorder": "#0054cf", //D 186 | "tab.inactiveModifiedBorder": "#0054cf", //D 187 | "tab.unfocusedActiveModifiedBorder": "#0054cf", //D 188 | "tab.unfocusedInactiveModifiedBorder": "#0054cf", //D 189 | "editorPane.background": "#fafafa", //0 190 | // "sideBySideEditor.horizontalBorder": "#ff0000", 191 | // "sideBySideEditor.verticalBorder": "#ff0000", 192 | 193 | // Editor colors 194 | "editor.background": "#fafafa", //0 195 | "editor.foreground": "#474747", //5 196 | "editorLineNumber.foreground": "#878787", //3 197 | "editorLineNumber.activeForeground": "#878787", //4 198 | // "editorCursor.background": "#f00", 199 | "editorCursor.foreground": "#474747", //5 200 | "editor.selectionBackground": "#cdcdcd", //2 201 | // "editor.selectionForeground": "#f00", 202 | "editor.inactiveSelectionBackground": "#cdcdcd", //2 203 | "editor.selectionHighlightBackground": "#ebebeb", //1 204 | // "editor.selectionHighlightBorder": "#f00", 205 | "editor.wordHighlightBackground": "#cdcdcd6f", //2 206 | // "editor.wordHighlightBorder": "#f00". 207 | "editor.wordHighlightStrongBackground": "#8787876f", //3 208 | // "editor.wordHighlightStrongBorder": "#f00", 209 | "editor.findMatchBackground": "#af85006f", //A 210 | "editor.findMatchHighlightBackground": "#ba37006f", //9 211 | "editor.findRangeHighlightBackground": "#ebebeb6f", //1 212 | // "editor.findMatchBorder": "#f00", 213 | // "editor.findMatchHighlightBorder": "#f00", 214 | // "editor.findRangeHighlightBorder": "#f00", 215 | "searchEditor.findMatchBackground": "#af85006f", //A 216 | // "searchEditor.findMatchBorder": "#ff0000", 217 | // "searchEditor.textInputBorder": "#ff0000", 218 | "editor.hoverHighlightBackground": "#cdcdcd6f", //2 219 | "editor.lineHighlightBackground": "#ebebeb", //1 220 | // "editorUnicodeHighlight.border": "#ff0000", 221 | // "editorUnicodeHighlight.background": "#ff0000", 222 | // "editor.lineHighlightBorder": "#f00", 223 | "editorLink.activeForeground": "#0054cf", //D 224 | "editor.rangeHighlightBackground": "#ebebeb6f", //1 225 | // "editor.rangeHighlightBorder": "#f00", 226 | // "editor.symbolHighlightBackground": "#ff0000", 227 | // "editor.symbolHighlightBorder": "#ff0000", 228 | "editorWhitespace.foreground": "#878787", //3 229 | "editorIndentGuide.background": "#878787", //3 230 | "editorIndentGuide.activeBackground": "#878787", //4 231 | "editorInlayHint.background": "#ebebeb", //1 232 | "editorInlayHint.foreground": "#474747", //5 233 | "editorInlayHint.typeBackground": "#ebebeb", //1 234 | "editorInlayHint.typeForeground": "#474747", //5 235 | "editorInlayHint.parameterBackground": "#ebebeb", //1 236 | "editorInlayHint.parameterForeground": "#474747", //5 237 | "editorRuler.foreground": "#878787", //3 238 | // "editor.linkedEditingBackground": "#ff0000", 239 | /// CodeLens 240 | "editorCodeLens.foreground": "#cdcdcd", //2 241 | /// Lightbulb 242 | "editorLightBulb.foreground": "#af8500", //A 243 | "editorLightBulbAutoFix.foreground": "#0054cf", //D 244 | /// Bracket matches 245 | "editorBracketMatch.background": "#cdcdcd", //2 246 | // "editorBracketMatch.border": "#f00", 247 | /// Bracket pair colorization 248 | "editorBracketHighlight.foreground1": "#bf0000", //8 249 | "editorBracketHighlight.foreground2": "#ba3700", //9 250 | "editorBracketHighlight.foreground3": "#af8500", //A 251 | "editorBracketHighlight.foreground4": "#008400", //B 252 | "editorBracketHighlight.foreground5": "#0054cf", //D 253 | "editorBracketHighlight.foreground6": "#6b40c3", //E 254 | "editorBracketHighlight.unexpectedBracket.foreground": "#dd0f9d", //F 255 | /// Bracket pair guides 256 | // "editorBracketPairGuide.activeBackground1": "#ff0000", 257 | // "editorBracketPairGuide.activeBackground2": "#ff0000", 258 | // "editorBracketPairGuide.activeBackground3": "#ff0000", 259 | // "editorBracketPairGuide.activeBackground4": "#ff0000", 260 | // "editorBracketPairGuide.activeBackground5": "#ff0000", 261 | // "editorBracketPairGuide.activeBackground6": "#ff0000", 262 | // "editorBracketPairGuide.background1": "#ff0000", 263 | // "editorBracketPairGuide.background2": "#ff0000", 264 | // "editorBracketPairGuide.background3": "#ff0000", 265 | // "editorBracketPairGuide.background4": "#ff0000", 266 | // "editorBracketPairGuide.background5": "#ff0000", 267 | // "editorBracketPairGuide.background6": "#ff0000", 268 | /// Folding 269 | // "editor.foldBackground": "#ff0000", 270 | /// Overview ruler 271 | // "editorOverviewRuler.background": "#ff0000", 272 | // "editorOverviewRuler.border": "#f00", 273 | "editorOverviewRuler.findMatchForeground": "#af85006f", //A 274 | "editorOverviewRuler.rangeHighlightForeground": "#8787876f", //3 275 | "editorOverviewRuler.selectionHighlightForeground": "#cdcdcd6f", //2 276 | "editorOverviewRuler.wordHighlightForeground": "#2828286f", //7 277 | "editorOverviewRuler.wordHighlightStrongForeground": "#0054cf6f", //D 278 | "editorOverviewRuler.modifiedForeground": "#6b40c3", //E 279 | "editorOverviewRuler.addedForeground": "#008400", //B 280 | "editorOverviewRuler.deletedForeground": "#bf0000", //8 281 | "editorOverviewRuler.errorForeground": "#bf0000", //8 282 | "editorOverviewRuler.warningForeground": "#af8500", //A 283 | "editorOverviewRuler.infoForeground": "#009a8a", //C 284 | "editorOverviewRuler.bracketMatchForeground": "#282828", //6 285 | /// Errors and warnings 286 | "editorError.foreground": "#bf0000", //8 287 | // "editorError.background": "#bf00006f", //8 288 | // "editorError.border": "", 289 | "editorWarning.foreground": "#af8500", //A 290 | // "editorWarning.background": "#af85006f", //A 291 | // "editorWarning.border": "#f00", 292 | "editorInfo.foreground": "#009a8a", //C 293 | // "editorInfo.background": "#009a8a6f", //C 294 | // "editorInfo.border": "", 295 | "editorHint.foreground": "#0054cf", //D 296 | // "editorHint.border": "#f00", 297 | "problemsErrorIcon.foreground": "#bf0000", //8 298 | "problemsWarningIcon.foreground": "#af8500", //A 299 | "problemsInfoIcon.foreground": "#009a8a", //C 300 | /// Unused source code 301 | // "editorUnnecessaryCode.border": "#f00", 302 | // "editorUnnecessaryCode.opacity": "#f00", 303 | /// Gutter 304 | "editorGutter.background": "#fafafa", //0 305 | "editorGutter.modifiedBackground": "#6b40c3", //E 306 | "editorGutter.addedBackground": "#008400", //B 307 | "editorGutter.deletedBackground": "#bf0000", //8 308 | "editorGutter.commentRangeForeground": "#878787", //4 309 | "editorGutter.foldingControlForeground": "#474747", //5 310 | // "editorCommentsWidget.resolvedBorder": "#008400", //B 311 | // "editorCommentsWidget.unresolvedBorder": "#bf0000", //8 312 | // "editorCommentsWidget.rangeBackground": "#ebebeb", //1 313 | // "editorCommentsWidget.rangeBorder": "#ff0000", 314 | // "editorCommentsWidget.rangeActiveBackground": "#cdcdcd", //2 315 | // "editorCommentsWidget.rangeActiveBorder": "#ff0000", 316 | 317 | // Diff editor colors 318 | "diffEditor.insertedTextBackground": "#00840020", 319 | // "diffEditor.insertedTextBorder": "#f00", 320 | "diffEditor.removedTextBackground": "#bf000020", 321 | // "diffEditor.removedTextBorder": "#f00", 322 | // "diffEditor.border": "#f00", 323 | "diffEditor.diagonalFill": "#cdcdcd", //2 324 | // "diffEditor.insertedLineBackground": "#ff0000", 325 | // "diffEditor.removedLineBackground": "#ff0000", 326 | // "diffEditorGutter.insertedLineBackground": "#ff0000", 327 | // "diffEditorGutter.removedLineBackground": "#ff0000", 328 | // "diffEditorOverview.insertedForeground": "#ff0000", 329 | // "diffEditorOverview.removedForeground": "#ff0000", 330 | 331 | // Editor widget colors 332 | "editorWidget.foreground": "#474747", //5 333 | "editorWidget.background": "#fafafa", //0 334 | // "editorWidget.border": "#f00", 335 | // "editorWidget.resizeBorder": "#f00", 336 | "editorSuggestWidget.background": "#ebebeb", //1 337 | // "editorSuggestWidget.border": "#f00", 338 | "editorSuggestWidget.foreground": "#474747", //5 339 | "editorSuggestWidget.focusHighlightForeground": "#282828", //7 340 | "editorSuggestWidget.highlightForeground": "#0054cf", //D 341 | "editorSuggestWidget.selectedBackground": "#cdcdcd", //2 342 | "editorSuggestWidget.selectedForeground": "#282828", //6 343 | // "editorSuggestWidget.selectedIconForeground": "#ff0000", 344 | // "editorSuggestWidgetStatus.foreground": "#ff0000", 345 | "editorHoverWidget.foreground": "#474747", //5 346 | "editorHoverWidget.background": "#fafafa", //1 347 | // "editorHoverWidget.border": "#f00", 348 | // "editorHoverWidget.highlightForeground": "#ff0000", 349 | // "editorHoverWidget.statusBarBackground": "#f00", 350 | // "editorGhostText.background": "#ff0000", 351 | // "editorGhostText.foreground": "#ff0000", 352 | "debugExceptionWidget.background": "#ebebeb", //1 353 | // "debugExceptionWidget.border": "#f00", 354 | "editorMarkerNavigation.background": "#ebebeb", //1 355 | "editorMarkerNavigationError.background": "#bf0000", //8 356 | "editorMarkerNavigationWarning.background": "#af8500", //A 357 | "editorMarkerNavigationInfo.background": "#0054cf", //D 358 | "editorMarkerNavigationError.headerBackground": "#bf000020", //8 359 | "editorMarkerNavigationWarning.headerBackground": "#af850020", //A 360 | "editorMarkerNavigationInfo.headerBackground": "#009a8a20", //C 361 | 362 | // Peek view colors 363 | // "peekView.border": "#f00", 364 | "peekViewEditor.background": "#ebebeb", //1 365 | "peekViewEditorGutter.background": "#ebebeb", //1 366 | "peekViewEditor.matchHighlightBackground": "#ba37006f", //9 367 | // "peekViewEditor.matchHighlightBorder": "#f00", 368 | "peekViewResult.background": "#fafafa", //0 369 | "peekViewResult.fileForeground": "#474747", //5 370 | "peekViewResult.lineForeground": "#878787", //3 371 | "peekViewResult.matchHighlightBackground": "#ba37006f", //9 372 | "peekViewResult.selectionBackground": "#cdcdcd", //2 373 | "peekViewResult.selectionForeground": "#474747", //5 374 | "peekViewTitle.background": "#cdcdcd", //2 375 | "peekViewTitleDescription.foreground": "#878787", //3 376 | "peekViewTitleLabel.foreground": "#474747", //5 377 | 378 | // Merge conflicts colors 379 | "merge.currentContentBackground": "#0054cf40", //D 380 | "merge.currentHeaderBackground": "#0054cf40", //D 381 | "merge.incomingContentBackground": "#00840060", //B 382 | "merge.incomingHeaderBackground": "#00840060", //B 383 | // "merge.border": "#f00", 384 | // "merge.commonContentBackground": "#f00", 385 | // "merge.commonHeaderBackground": "#f00", 386 | "editorOverviewRuler.currentContentForeground": "#0054cf", //D 387 | "editorOverviewRuler.incomingContentForeground": "#008400", //B 388 | "editorOverviewRuler.commonContentForeground": "#dd0f9d", //F 389 | // "mergeEditor.change.background": "#ff0000", 390 | // "mergeEditor.change.word.background": "#ff0000", 391 | // "mergeEditor.conflict.unhandledUnfocused.border": "#ff0000", 392 | // "mergeEditor.conflict.unhandledFocused.border": "#ff0000", 393 | // "mergeEditor.conflict.handledUnfocused.border": "#ff0000", 394 | // "mergeEditor.conflict.handledFocused.border": "#ff0000", 395 | // "mergeEditor.conflict.handled.minimapOverViewRuler": "#ff0000", 396 | // "mergeEditor.conflict.unhandled.minimapOverViewRuler": "#ff0000", 397 | 398 | // Panel colors 399 | "panel.background": "#fafafa", //0 400 | // "panel.border": "#f00", 401 | // Below is no longer supported as of 1.47 402 | "panel.dropBackground": "#ebebeb6f", //1 403 | // Above is no longer supported as of 1.47 404 | "panel.dropBorder": "#ebebeb6f", //1 405 | // "panelTitle.activeBorder": "#f00", 406 | "panelTitle.activeForeground": "#474747", //5 407 | "panelTitle.inactiveForeground": "#878787", //3 408 | // "panelInput.border": "#f00", 409 | // "panelSection.border": "#ff0000", 410 | // "panelSection.dropBackground": "#ff0000", 411 | // "panelSectionHeader.background": "#ff0000", 412 | // "panelSectionHeader.foreground": "#ff0000", 413 | // "panelSectionHeader.border": "#ff0000", 414 | 415 | // Status Bar colors 416 | "statusBar.background": "#0054cf", //D 417 | "statusBar.foreground": "#282828", //7 418 | // "statusBar.border": "#f00", 419 | "statusBar.debuggingBackground": "#ba3700", //9 420 | "statusBar.debuggingForeground": "#282828", //7 421 | // "statusBar.debuggingBorder": "", 422 | "statusBar.noFolderBackground": "#6b40c3", //E 423 | "statusBar.noFolderForeground": "#282828", //7 424 | // "statusBar.noFolderBorder": "", 425 | "statusBarItem.activeBackground": "#878787", //3 426 | "statusBarItem.hoverBackground": "#cdcdcd", //2 427 | "statusBarItem.prominentForeground": "#282828", //7 428 | "statusBarItem.prominentBackground": "#6b40c3", //E 429 | "statusBarItem.prominentHoverBackground": "#bf0000", //8 430 | "statusBarItem.remoteBackground": "#008400", //B 431 | "statusBarItem.remoteForeground": "#282828", //7 432 | "statusBarItem.errorBackground": "#bf0000", //8 433 | "statusBarItem.errorForeground": "#282828", //7 434 | "statusBarItem.warningBackground": "#af8500", //A 435 | "statusBarItem.warningForeground": "#282828", //7 436 | // "statusBarItem.compactHoverBackground": "#ff0000", 437 | // "statusBarItem.focusBorder": "#ff0000", 438 | // "statusBarItem.settingsProfilesForeground": "#ff0000", 439 | // "statusBarItem.settingsProfilesBackground": "#ff0000", 440 | // "statusBar.focusBorder": "#ff0000", 441 | 442 | // Title Bar colors 443 | "titleBar.activeBackground": "#fafafa", //0 444 | "titleBar.activeForeground": "#474747", //5 445 | "titleBar.inactiveBackground": "#ebebeb", //1 446 | "titleBar.inactiveForeground": "#878787", //3 447 | // "titleBar.border": "#f00", 448 | 449 | // Menu Bar colors 450 | "menubar.selectionForeground": "#474747", //5 451 | "menubar.selectionBackground": "#ebebeb", //1 452 | // "menubar.selectionBorder": "#f00", 453 | "menu.foreground": "#474747", //5 454 | "menu.background": "#ebebeb", //1 455 | "menu.selectionForeground": "#474747", //5 456 | "menu.selectionBackground": "#cdcdcd", //2 457 | // "menu.selectionBorder": "#f00", 458 | "menu.separatorBackground": "#282828", //7 459 | // "menu.border": "#f00", 460 | 461 | // Command Center colors 462 | "commandCenter.foreground": "#474747", //5 463 | "commandCenter.activeForeground": "#282828", //7 464 | "commandCenter.background": "#fafafa", //0 465 | "commandCenter.activeBackground": "#ebebeb", //1 466 | // "commandCenter.border": "#ff0000", 467 | 468 | // Notification colors 469 | // "notificationCenter.border": "", 470 | "notificationCenterHeader.foreground": "#474747", //5 471 | "notificationCenterHeader.background": "#ebebeb", //1 472 | // "notificationToast.border": "", 473 | "notifications.foreground": "#474747", //5 474 | "notifications.background": "#cdcdcd", //2 475 | // "notifications.border": "", 476 | "notificationLink.foreground": "#0054cf", //D 477 | "notificationsErrorIcon.foreground": "#bf0000", //8 478 | "notificationsWarningIcon.foreground": "#af8500", //A 479 | "notificationsInfoIcon.foreground": "#0054cf", //D 480 | 481 | // Below is no longer supported as of 1.21 482 | "notification.background": "#cdcdcd", //2 483 | "notification.foreground": "#474747", //5 484 | "notification.buttonBackground": "#0054cf", //D 485 | "notification.buttonHoverBackground": "#cdcdcd", //2 486 | "notification.buttonForeground": "#282828", //7 487 | "notification.infoBackground": "#009a8a", //C 488 | "notification.infoForeground": "#282828", //7 489 | "notification.warningBackground": "#af8500", //A 490 | "notification.warningForeground": "#282828", //7 491 | "notification.errorBackground": "#bf0000", //8 492 | "notification.errorForeground": "#282828", //7 493 | // Above is no longer supported as of 1.21 494 | 495 | // Banner colors 496 | "banner.background": "#cdcdcd", //2 497 | "banner.foreground": "#474747", //5 498 | "banner.iconForeground": "#0054cf", //D 499 | 500 | // Extensions colors 501 | "extensionButton.prominentBackground": "#008400", //B 502 | "extensionButton.prominentForeground": "#282828", //7 503 | "extensionButton.prominentHoverBackground": "#cdcdcd", //2 504 | "extensionBadge.remoteBackground": "#ba3700", //9 505 | "extensionBadge.remoteForeground": "#282828", //7 506 | "extensionIcon.starForeground": "#af8500", //A 507 | "extensionIcon.verifiedForeground": "#0054cf", //D 508 | "extensionIcon.preReleaseForeground": "#ba3700", //9 509 | // "extensionIcon.sponsorForeground": "#ff0000", 510 | 511 | // Quick picker colors 512 | // "pickerGroup.border": "#f00", 513 | "pickerGroup.foreground": "#878787", //3 514 | "quickInput.background": "#ebebeb", //1 515 | "quickInput.foreground": "#474747", //5 516 | "quickInputList.focusBackground": "#878787", //3 517 | "quickInputList.focusForeground": "#282828", //7 518 | "quickInputList.focusIconForeground": "#282828", //7 519 | // "quickInputTitle.background": "#ff0000", 520 | 521 | // Keybinding label colors 522 | "keybindingLabel.background": "#cdcdcd", //2 523 | "keybindingLabel.foreground": "#474747", //5 524 | // "keybindingLabel.border": "#ff0000", 525 | // "keybindingLabel.bottomBorder": "#ff0000", 526 | 527 | // Keybinding shortcut table colors 528 | "keybindingTable.headerBackground": "#cdcdcd", //2 529 | "keybindingTable.rowsBackground": "#ebebeb", //1 530 | 531 | // Integrated terminal colors 532 | "terminal.background": "#fafafa", //0 533 | // "terminal.border": "#ff0000", 534 | "terminal.foreground": "#474747", //5 535 | "terminal.ansiBlack": "#fafafa", //0 536 | "terminal.ansiRed": "#bf0000", //8 537 | "terminal.ansiGreen": "#008400", //B 538 | "terminal.ansiYellow": "#af8500", //A 539 | "terminal.ansiBlue": "#0054cf", //D 540 | "terminal.ansiMagenta": "#6b40c3", //E 541 | "terminal.ansiCyan": "#009a8a", //C 542 | "terminal.ansiWhite": "#474747", //5 543 | "terminal.ansiBrightBlack": "#878787", //3 544 | "terminal.ansiBrightRed": "#bf0000", //8 545 | "terminal.ansiBrightGreen": "#008400", //B 546 | "terminal.ansiBrightYellow": "#af8500", //A 547 | "terminal.ansiBrightBlue": "#0054cf", //D 548 | "terminal.ansiBrightMagenta": "#6b40c3", //E 549 | "terminal.ansiBrightCyan": "#009a8a", //C 550 | "terminal.ansiBrightWhite": "#282828", //7 551 | // "terminal.selectionBackground": "#f0f", 552 | // "terminal.selectionForeground": "#ff0000", 553 | // "terminal.findMatchBackground": "#ff0000", 554 | // "terminalCursor.background": "#f0f", 555 | "terminalCursor.foreground": "#474747", //5 556 | // "terminal.dropBackground": "#ff0000", 557 | // "terminal.tab.activeBorder": "#ff0000", 558 | // "terminalCommandDecoration.defaultBackground": "#ff0000", 559 | // "terminalCommandDecoration.successBackground": "#ff0000", 560 | // "terminalCommandDecoration.errorBackground": "#ff0000", 561 | "terminalOverviewRuler.cursorForeground": "#ff0000", 562 | "terminalOverviewRuler.findMatchForeground": "#ff0000", 563 | 564 | // Debug colors 565 | "debugToolBar.background": "#ebebeb", //1 566 | // "debugToolBar.border": "#f0f", 567 | // "editor.stackFrameHighlightBackground": "#f0f", 568 | // "editor.focusedStackFrameHighlightBackground": "#f0f", 569 | // "editor.inlineValuesForeground": "#ff0000", 570 | // "editor.inlineValuesBackground": "#ff0000", 571 | // "debugView.exceptionLabelForeground": "#ff0000", 572 | // "debugView.exceptionLabelBackground": "#ff0000", 573 | "debugView.stateLabelForeground": "#282828", //7 574 | "debugView.stateLabelBackground": "#0054cf", //D 575 | "debugView.valueChangedHighlight": "#0054cf", //D 576 | "debugTokenExpression.name": "#6b40c3", //E 577 | "debugTokenExpression.value": "#474747", //5 578 | "debugTokenExpression.string": "#008400", //B 579 | "debugTokenExpression.boolean": "#ba3700", //9 580 | "debugTokenExpression.number": "#ba3700", //9 581 | "debugTokenExpression.error": "#bf0000", //8 582 | 583 | // Testing colors 584 | "testing.iconFailed": "#bf0000", //8 585 | "testing.iconErrored": "#dd0f9d", //F 586 | "testing.iconPassed": "#008400", //B 587 | "testing.runAction": "#878787", //4 588 | "testing.iconQueued": "#af8500", //A 589 | "testing.iconUnset": "#878787", //4 590 | "testing.iconSkipped": "#6b40c3", //E 591 | // "testing.peekBorder": "#ff0000", 592 | "testing.peekHeaderBackground": "#ebebeb", //1 593 | "testing.message.error.decorationForeground": "#474747", //5 594 | "testing.message.error.lineBackground": "#bf000020", //8 595 | "testing.message.info.decorationForeground": "#474747", //5 596 | "testing.message.info.lineBackground": "#0054cf20", //D 597 | 598 | // Welcome page colors 599 | "welcomePage.background": "#fafafa", //0 600 | // Below is no longer supported as of 1.63 601 | "welcomePage.buttonBackground": "#ebebeb", //1 602 | "welcomePage.buttonHoverBackground": "#cdcdcd", //2 603 | // Above is no longer supported as of 1.63 604 | "welcomePage.progress.background": "#878787", //3 605 | "welcomePage.progress.foreground": "#0054cf", //D 606 | "welcomePage.tileBackground": "#ebebeb", //1 607 | "welcomePage.tileHoverBackground": "#cdcdcd", //2 608 | // "welcomePage.tileShadow": "#ff0000", 609 | "walkThrough.embeddedEditorBackground": "#fafafa", //0 610 | 611 | // Source Control colors 612 | // "scm.providerBorder": "#ff0000", 613 | 614 | // Git colors 615 | "gitDecoration.addedResourceForeground": "#008400", //B 616 | "gitDecoration.modifiedResourceForeground": "#6b40c3", //E 617 | "gitDecoration.deletedResourceForeground": "#bf0000", //8 618 | "gitDecoration.renamedResourceForeground": "#009a8a", //C 619 | "gitDecoration.stageModifiedResourceForeground": "#6b40c3", //E 620 | "gitDecoration.stageDeletedResourceForeground": "#bf0000", //8 621 | "gitDecoration.untrackedResourceForeground": "#ba3700", //9 622 | "gitDecoration.ignoredResourceForeground": "#878787", //3 623 | "gitDecoration.conflictingResourceForeground": "#af8500", //A 624 | "gitDecoration.submoduleResourceForeground": "#dd0f9d", //F 625 | 626 | // Settings Editor colors 627 | "settings.headerForeground": "#474747", //5 628 | "settings.modifiedItemIndicator": "#0054cf", //D 629 | // Below was introduced temporarily in 1.26 630 | "settings.modifiedItemForeground": "#008400", //B 631 | // Above was introduced temporarily in 1.26 632 | "settings.dropdownBackground": "#ebebeb", //1 633 | "settings.dropdownForeground": "#474747", //5 634 | // "settings.dropdownBorder": "", 635 | // "settings.dropdownListBorder": "", 636 | "settings.checkboxBackground": "#ebebeb", //1 637 | "settings.checkboxForeground": "#474747", //5 638 | // "settings.checkboxBorder": "", 639 | "settings.rowHoverBackground": "#cdcdcd", //2 640 | "settings.textInputBackground": "#ebebeb", //1 641 | "settings.textInputForeground": "#474747", //5 642 | // "settings.textInputBorder": "", 643 | "settings.numberInputBackground": "#ebebeb", //1 644 | "settings.numberInputForeground": "#474747", //5 645 | // "settings.numberInputBorder": "", 646 | "settings.focusedRowBackground": "#cdcdcd", //2 647 | // "settings.focusedRowBorder": "#ff0000", 648 | "settings.headerBorder": "#474747", //5 649 | "settings.sashBorder": "#474747", //5 650 | 651 | // Breadcrumbs colors 652 | "breadcrumb.foreground": "#474747", //5 653 | "breadcrumb.background": "#ebebeb", //1 654 | "breadcrumb.focusForeground": "#282828", //6 655 | "breadcrumb.activeSelectionForeground": "#282828", //7 656 | "breadcrumbPicker.background": "#ebebeb", //1 657 | 658 | // Snippets colors 659 | "editor.snippetTabstopHighlightBackground": "#cdcdcd", //2 660 | // "editor.snippetTabstopHighlightBorder": "#f00", 661 | "editor.snippetFinalTabstopHighlightBackground": "#878787", //3 662 | // "editor.snippetFinalTabstopHighlightBorder": "#f00", 663 | 664 | // Symbol Icons colors 665 | "symbolIcon.arrayForeground": "#474747", //5 666 | "symbolIcon.booleanForeground": "#ba3700", //9 667 | "symbolIcon.classForeground": "#af8500", //A 668 | "symbolIcon.colorForeground": "#f0f", 669 | "symbolIcon.constantForeground": "#ba3700", //9 670 | "symbolIcon.constructorForeground": "#0054cf", //D 671 | "symbolIcon.enumeratorForeground": "#ba3700", //9 672 | "symbolIcon.enumeratorMemberForeground": "#0054cf", //D 673 | "symbolIcon.eventForeground": "#af8500", //A 674 | "symbolIcon.fieldForeground": "#bf0000", //8 675 | "symbolIcon.fileForeground": "#474747", //5 676 | "symbolIcon.folderForeground": "#474747", //5 677 | "symbolIcon.functionForeground": "#0054cf", //D, 678 | "symbolIcon.interfaceForeground": "#0054cf", //D 679 | "symbolIcon.keyForeground": "#f0f", 680 | "symbolIcon.keywordForeground": "#6b40c3", //E 681 | "symbolIcon.methodForeground": "#0054cf", //D 682 | "symbolIcon.moduleForeground": "#474747", //5 683 | "symbolIcon.namespaceForeground": "#474747", //5 684 | "symbolIcon.nullForeground": "#dd0f9d", //F 685 | "symbolIcon.numberForeground": "#ba3700", //9 686 | "symbolIcon.objectForeground": "#f0f", 687 | "symbolIcon.operatorForeground": "#f0f", 688 | "symbolIcon.packageForeground": "#f0f", 689 | "symbolIcon.propertyForeground": "#474747", //5 690 | "symbolIcon.referenceForeground": "#f0f", 691 | "symbolIcon.snippetForeground": "#474747", //5 692 | "symbolIcon.stringForeground": "#008400", //B 693 | "symbolIcon.structForeground": "#af8500", //A 694 | "symbolIcon.textForeground": "#474747", //5 695 | "symbolIcon.typeParameterForeground": "#f0f", 696 | "symbolIcon.unitForeground": "#f0f", 697 | "symbolIcon.variableForeground": "#bf0000", //8 698 | 699 | // Debug Icons colors 700 | "debugIcon.breakpointForeground": "#bf0000", //8 701 | "debugIcon.breakpointDisabledForeground": "#878787", //4 702 | "debugIcon.breakpointUnverifiedForeground": "#cdcdcd", //2 703 | "debugIcon.breakpointCurrentStackframeForeground": "#af8500", //A 704 | "debugIcon.breakpointStackframeForeground": "#dd0f9d", //F 705 | "debugIcon.startForeground": "#008400", //B 706 | "debugIcon.pauseForeground": "#0054cf", //D 707 | "debugIcon.stopForeground": "#bf0000", //8 708 | "debugIcon.disconnectForeground": "#bf0000", //8 709 | "debugIcon.restartForeground": "#008400", //B 710 | "debugIcon.stepOverForeground": "#0054cf", //D 711 | "debugIcon.stepIntoForeground": "#009a8a", //C 712 | "debugIcon.stepOutForeground": "#6b40c3", //E 713 | "debugIcon.continueForeground": "#008400", //B 714 | "debugIcon.stepBackForeground": "#dd0f9d", //F 715 | "debugConsole.infoForeground": "#474747", //5 716 | "debugConsole.warningForeground": "#af8500", //A 717 | "debugConsole.errorForeground": "#bf0000", //8 718 | "debugConsole.sourceForeground": "#474747", //5 719 | "debugConsoleInputIcon.foreground": "#474747", //5 720 | 721 | // Notebook colors 722 | "notebook.editorBackground": "#fafafa", //0 723 | "notebook.cellBorderColor": "#878787", //3 724 | "notebook.cellHoverBackground": "#ebebeb", //1 725 | // "notebook.cellInsertionIndicator": "#ff0000", 726 | // "notebook.cellStatusBarItemHoverBackground": "#ff0000", 727 | "notebook.cellToolbarSeparator": "#cdcdcd", //2 728 | "notebook.cellEditorBackground": "#fafafa", //0 729 | "notebook.focusedCellBackground": "#cdcdcd", //2 730 | "notebook.focusedCellBorder": "#0054cf", //D 731 | "notebook.focusedEditorBorder": "#0054cf", //D 732 | "notebook.inactiveFocusedCellBorder": "#878787", //3 733 | // "notebook.inactiveSelectedCellBorder": "#ff0000", 734 | // "notebook.outputContainerBackgroundColor": "#ff0000", 735 | // "notebook.outputContainerBorderColor": "#ff0000", 736 | "notebook.selectedCellBackground": "#cdcdcd", //2 737 | // "notebook.selectedCellBorder": "#ff0000", 738 | // "notebook.symbolHighlightBackground": "#ff0000", 739 | // "notebookScrollbarSlider.activeBackground": "#ff0000", 740 | // "notebookScrollbarSlider.background": "#ff0000", 741 | // "notebookScrollbarSlider.hoverBackground": "#ff0000", 742 | "notebookStatusErrorIcon.foreground": "#bf0000", //8 743 | "notebookStatusRunningIcon.foreground": "#009a8a", //C 744 | "notebookStatusSuccessIcon.foreground": "#008400", //B 745 | 746 | // Chart colors 747 | "charts.foreground": "#474747", //5 748 | "charts.lines": "#474747", //5 749 | "charts.red": "#bf0000", //8 750 | "charts.blue": "#0054cf", //D 751 | "charts.yellow": "#af8500", //A 752 | "charts.orange": "#ba3700", //9 753 | "charts.green": "#008400", //B 754 | "charts.purple": "#6b40c3", //E 755 | 756 | // Ports Colors 757 | "ports.iconRunningProcessForeground": "#ba3700" //9 758 | }, 759 | "tokenColors": [ 760 | { 761 | "name": "Comment", 762 | "scope": [ 763 | "comment", 764 | "punctuation.definition.comment" 765 | ], 766 | "settings": { 767 | "fontStyle": "italic", 768 | "foreground": "#878787" //3 769 | } 770 | }, 771 | { 772 | "name": "Variables, Parameters", 773 | "scope": [ 774 | "variable", 775 | "string constant.other.placeholder", 776 | "entity.name.variable.parameter", 777 | "entity.name.variable.local", 778 | "variable.parameter" 779 | ], 780 | "settings": { 781 | "foreground": "#bf0000" //8 782 | } 783 | }, 784 | { 785 | "name": "Properties", 786 | "scope": [ 787 | "variable.other.object.property" 788 | ], 789 | "settings": { 790 | "foreground": "#0054cf" //D 791 | } 792 | }, 793 | { 794 | "name": "Colors", 795 | "scope": [ 796 | "constant.other.color" 797 | ], 798 | "settings": { 799 | "foreground": "#008400" //B 800 | } 801 | }, 802 | { 803 | "name": "Invalid", 804 | "scope": [ 805 | "invalid", 806 | "invalid.illegal" 807 | ], 808 | "settings": { 809 | "foreground": "#bf0000" //8 810 | } 811 | }, 812 | { 813 | "name": "Invalid - Deprecated", 814 | "scope": [ 815 | "invalid.deprecated" 816 | ], 817 | "settings": { 818 | "foreground": "#dd0f9d" //F 819 | } 820 | }, 821 | { 822 | "name": "Keyword, Storage", 823 | "scope": [ 824 | "keyword", 825 | "storage.modifier" 826 | ], 827 | "settings": { 828 | "foreground": "#6b40c3" //E 829 | } 830 | }, 831 | { 832 | "name": "Keyword Control", 833 | "scope": [ 834 | "keyword.control", 835 | "keyword.control.flow", 836 | "keyword.control.from", 837 | "keyword.control.import", 838 | "keyword.control.as" 839 | ], 840 | "settings": { 841 | "foreground": "#6b40c3" //E 842 | } 843 | }, 844 | { 845 | "name": "Keyword", 846 | "scope": [ 847 | "keyword.other.using", 848 | "keyword.other.namespace", 849 | "keyword.other.class", 850 | "keyword.other.new", 851 | "keyword.other.event", 852 | "keyword.other.this", 853 | "keyword.other.await", 854 | "keyword.other.var", 855 | "keyword.other.package", 856 | "keyword.other.import", 857 | "variable.language.this", 858 | "storage.type.ts" 859 | ], 860 | "settings": { 861 | "foreground": "#6b40c3" //E 862 | } 863 | }, 864 | { 865 | "name": "Types, Primitives", 866 | "scope": [ 867 | "keyword.type", 868 | "storage.type.primitive" 869 | ], 870 | "settings": { 871 | "foreground": "#009a8a" //C 872 | } 873 | }, 874 | { 875 | "name": "Function", 876 | "scope": [ 877 | "storage.type.function" 878 | ], 879 | "settings": { 880 | "foreground": "#0054cf" //D 881 | } 882 | }, 883 | { 884 | "name": "Operator, Misc", 885 | "scope": [ 886 | "constant.other.color", 887 | "punctuation", 888 | "punctuation.section.class.end", 889 | "meta.tag", 890 | "punctuation.definition.tag", 891 | "punctuation.separator.inheritance.php", 892 | "punctuation.definition.tag.html", 893 | "punctuation.definition.tag.begin.html", 894 | "punctuation.definition.tag.end.html", 895 | "keyword.other.template", 896 | "keyword.other.substitution" 897 | ], 898 | "settings": { 899 | "foreground": "#474747" //5 900 | } 901 | }, 902 | { 903 | "name": "Embedded", 904 | "scope": [ 905 | "punctuation.section.embedded", 906 | "variable.interpolation" 907 | ], 908 | "settings": { 909 | "foreground": "#dd0f9d" //F 910 | } 911 | }, 912 | { 913 | "name": "Tag", 914 | "scope": [ 915 | "entity.name.tag", 916 | "meta.tag.sgml", 917 | "markup.deleted.git_gutter" 918 | ], 919 | "settings": { 920 | "foreground": "#bf0000" //8 921 | } 922 | }, 923 | { 924 | "name": "Function, Special Method", 925 | "scope": [ 926 | "entity.name.function", 927 | "meta.function-call", 928 | "variable.function", 929 | "support.function", 930 | "keyword.other.special-method" 931 | ], 932 | "settings": { 933 | "foreground": "#0054cf" //D 934 | } 935 | }, 936 | { 937 | "name": "Block Level Variables", 938 | "scope": [ 939 | "meta.block variable.other" 940 | ], 941 | "settings": { 942 | "foreground": "#bf0000" //8 943 | } 944 | }, 945 | { 946 | "name": "Other Variable, String Link", 947 | "scope": [ 948 | "support.other.variable", 949 | "string.other.link" 950 | ], 951 | "settings": { 952 | "foreground": "#bf0000" //8 953 | } 954 | }, 955 | { 956 | "name": "Number, Constant, Function Argument, Tag Attribute, Embedded", 957 | "scope": [ 958 | "constant.numeric", 959 | "constant.language", 960 | "support.constant", 961 | "constant.character", 962 | "constant.escape", 963 | "keyword.other.unit", 964 | "keyword.other" 965 | ], 966 | "settings": { 967 | "foreground": "#ba3700" //9 968 | } 969 | }, 970 | { 971 | "name": "String, Symbols, Inherited Class, Markup Heading", 972 | "scope": [ 973 | "string", 974 | "constant.other.symbol", 975 | "constant.other.key", 976 | "entity.other.inherited-class", 977 | "markup.heading", 978 | "markup.inserted.git_gutter", 979 | "meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js" 980 | ], 981 | "settings": { 982 | "fontStyle": "", 983 | "foreground": "#008400" //B 984 | } 985 | }, 986 | { 987 | "name": "Class, Support", 988 | "scope": [ 989 | "entity.name", 990 | "support.type", 991 | "support.class", 992 | "support.other.namespace.use.php", 993 | "meta.use.php", 994 | "support.other.namespace.php", 995 | "markup.changed.git_gutter", 996 | "support.type.sys-types" 997 | ], 998 | "settings": { 999 | "foreground": "#af8500" //A 1000 | } 1001 | }, 1002 | { 1003 | "name": "Storage Type, Import Class", 1004 | "scope": [ 1005 | "storage.type", 1006 | "storage.modifier.package", 1007 | "storage.modifier.import" 1008 | ], 1009 | "settings": { 1010 | "foreground": "#af8500" //A 1011 | } 1012 | }, 1013 | { 1014 | "name": "Fields", 1015 | "scope": [ 1016 | "entity.name.variable.field" 1017 | ], 1018 | "settings": { 1019 | "foreground": "#0054cf" //D 1020 | } 1021 | }, 1022 | { 1023 | "name": "Entity Types", 1024 | "scope": [ 1025 | "support.type" 1026 | ], 1027 | "settings": { 1028 | "foreground": "#009a8a" //C 1029 | } 1030 | }, 1031 | { 1032 | "name": "CSS Class and Support", 1033 | "scope": [ 1034 | "source.css support.type.property-name", 1035 | "source.sass support.type.property-name", 1036 | "source.scss support.type.property-name", 1037 | "source.less support.type.property-name", 1038 | "source.stylus support.type.property-name", 1039 | "source.postcss support.type.property-name" 1040 | ], 1041 | "settings": { 1042 | "foreground": "#009a8a" //C 1043 | } 1044 | }, 1045 | { 1046 | "name": "Sub-methods", 1047 | "scope": [ 1048 | "entity.name.module.js", 1049 | "variable.import.parameter.js", 1050 | "variable.other.class.js" 1051 | ], 1052 | "settings": { 1053 | "foreground": "#bf0000" //8 1054 | } 1055 | }, 1056 | { 1057 | "name": "Language methods", 1058 | "scope": [ 1059 | "variable.language" 1060 | ], 1061 | "settings": { 1062 | "fontStyle": "italic", 1063 | "foreground": "#bf0000" //8 1064 | } 1065 | }, 1066 | { 1067 | "name": "entity.name.method.js", 1068 | "scope": [ 1069 | "entity.name.method.js" 1070 | ], 1071 | "settings": { 1072 | "fontStyle": "italic", 1073 | "foreground": "#0054cf" //D 1074 | } 1075 | }, 1076 | { 1077 | "name": "meta.method.js", 1078 | "scope": [ 1079 | "meta.class-method.js entity.name.function.js", 1080 | "variable.function.constructor" 1081 | ], 1082 | "settings": { 1083 | "foreground": "#0054cf" //D 1084 | } 1085 | }, 1086 | { 1087 | "name": "Attributes", 1088 | "scope": [ 1089 | "entity.other.attribute-name" 1090 | ], 1091 | "settings": { 1092 | "foreground": "#0054cf" //D 1093 | } 1094 | }, 1095 | { 1096 | "name": "HTML Attributes", 1097 | "scope": [ 1098 | "text.html.basic entity.other.attribute-name.html", 1099 | "text.html.basic entity.other.attribute-name" 1100 | ], 1101 | "settings": { 1102 | "fontStyle": "italic", 1103 | "foreground": "#af8500" //A 1104 | } 1105 | }, 1106 | { 1107 | "name": "CSS Classes", 1108 | "scope": [ 1109 | "entity.other.attribute-name.class" 1110 | ], 1111 | "settings": { 1112 | "foreground": "#af8500" //A 1113 | } 1114 | }, 1115 | { 1116 | "name": "CSS ID's", 1117 | "scope": [ 1118 | "source.sass keyword.control" 1119 | ], 1120 | "settings": { 1121 | "foreground": "#0054cf" //D 1122 | } 1123 | }, 1124 | { 1125 | "name": "Inserted", 1126 | "scope": [ 1127 | "markup.inserted" 1128 | ], 1129 | "settings": { 1130 | "foreground": "#008400" //B 1131 | } 1132 | }, 1133 | { 1134 | "name": "Deleted", 1135 | "scope": [ 1136 | "markup.deleted" 1137 | ], 1138 | "settings": { 1139 | "foreground": "#bf0000" //8 1140 | } 1141 | }, 1142 | { 1143 | "name": "Changed", 1144 | "scope": [ 1145 | "markup.changed" 1146 | ], 1147 | "settings": { 1148 | "foreground": "#6b40c3" //E 1149 | } 1150 | }, 1151 | { 1152 | "name": "Regular Expressions", 1153 | "scope": [ 1154 | "string.regexp" 1155 | ], 1156 | "settings": { 1157 | "foreground": "#009a8a" //C 1158 | } 1159 | }, 1160 | { 1161 | "name": "Escape Characters", 1162 | "scope": [ 1163 | "constant.character.escape" 1164 | ], 1165 | "settings": { 1166 | "foreground": "#009a8a" //C 1167 | } 1168 | }, 1169 | { 1170 | "name": "URL", 1171 | "scope": [ 1172 | "*url*", 1173 | "*link*", 1174 | "*uri*" 1175 | ], 1176 | "settings": { 1177 | "fontStyle": "underline" 1178 | } 1179 | }, 1180 | { 1181 | "name": "Decorators", 1182 | "scope": [ 1183 | "tag.decorator.js entity.name.tag.js", 1184 | "tag.decorator.js punctuation.definition.tag.js" 1185 | ], 1186 | "settings": { 1187 | "fontStyle": "italic", 1188 | "foreground": "#0054cf" // D 1189 | } 1190 | }, 1191 | { 1192 | "name": "ES7 Bind Operator", 1193 | "scope": [ 1194 | "source.js constant.other.object.key.js string.unquoted.label.js" 1195 | ], 1196 | "settings": { 1197 | "fontStyle": "italic", 1198 | "foreground": "#6b40c3" //E 1199 | } 1200 | }, 1201 | { 1202 | "name": "JSON Key - Level 0", 1203 | "scope": [ 1204 | "source.json meta.structure.dictionary.json support.type.property-name.json" 1205 | ], 1206 | "settings": { 1207 | "foreground": "#0054cf" //D 1208 | } 1209 | }, 1210 | { 1211 | "name": "JSON Key - Level 1", 1212 | "scope": [ 1213 | "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" 1214 | ], 1215 | "settings": { 1216 | "foreground": "#0054cf" //D 1217 | } 1218 | }, 1219 | { 1220 | "name": "JSON Key - Level 2", 1221 | "scope": [ 1222 | "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" 1223 | ], 1224 | "settings": { 1225 | "foreground": "#0054cf" //D 1226 | } 1227 | }, 1228 | { 1229 | "name": "JSON Key - Level 3", 1230 | "scope": [ 1231 | "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" 1232 | ], 1233 | "settings": { 1234 | "foreground": "#0054cf" //D 1235 | } 1236 | }, 1237 | { 1238 | "name": "JSON Key - Level 4", 1239 | "scope": [ 1240 | "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" 1241 | ], 1242 | "settings": { 1243 | "foreground": "#0054cf" //D 1244 | } 1245 | }, 1246 | { 1247 | "name": "JSON Key - Level 5", 1248 | "scope": [ 1249 | "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" 1250 | ], 1251 | "settings": { 1252 | "foreground": "#0054cf" //D 1253 | } 1254 | }, 1255 | { 1256 | "name": "JSON Key - Level 6", 1257 | "scope": [ 1258 | "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" 1259 | ], 1260 | "settings": { 1261 | "foreground": "#0054cf" //D 1262 | } 1263 | }, 1264 | { 1265 | "name": "JSON Key - Level 7", 1266 | "scope": [ 1267 | "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" 1268 | ], 1269 | "settings": { 1270 | "foreground": "#0054cf" //D 1271 | } 1272 | }, 1273 | { 1274 | "name": "JSON Key - Level 8", 1275 | "scope": [ 1276 | "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" 1277 | ], 1278 | "settings": { 1279 | "foreground": "#0054cf" //D 1280 | } 1281 | }, 1282 | { 1283 | "name": "Markdown - Plain", 1284 | "scope": [ 1285 | "text.html.markdown", 1286 | "punctuation.definition.list_item.markdown" 1287 | ], 1288 | "settings": { 1289 | "foreground": "#474747" //5 1290 | } 1291 | }, 1292 | { 1293 | "name": "Markdown - Markup Raw Inline", 1294 | "scope": [ 1295 | "text.html.markdown markup.inline.raw.markdown" 1296 | ], 1297 | "settings": { 1298 | "foreground": "#6b40c3" //E 1299 | } 1300 | }, 1301 | { 1302 | "name": "Markdown - Markup Raw Inline Punctuation", 1303 | "scope": [ 1304 | "text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown" 1305 | ], 1306 | "settings": { 1307 | "foreground": "#009a8a" //C 1308 | } 1309 | }, 1310 | { 1311 | "name": "Markdown - Line Break", 1312 | "scope": [ 1313 | "text.html.markdown meta.dummy.line-break" 1314 | ], 1315 | "settings": { 1316 | "foreground": "#878787" //3 1317 | } 1318 | }, 1319 | { 1320 | "name": "Markdown - Heading", 1321 | "scope": [ 1322 | "markdown.heading", 1323 | "markup.heading | markup.heading entity.name", 1324 | "markup.heading.markdown punctuation.definition.heading.markdown" 1325 | ], 1326 | "settings": { 1327 | "foreground": "#0054cf" //D 1328 | } 1329 | }, 1330 | { 1331 | "name": "Markup - Italic", 1332 | "scope": [ 1333 | "markup.italic" 1334 | ], 1335 | "settings": { 1336 | "fontStyle": "italic", 1337 | "foreground": "#bf0000" //8 1338 | } 1339 | }, 1340 | { 1341 | "name": "Markup - Bold", 1342 | "scope": [ 1343 | "markup.bold", 1344 | "markup.bold string" 1345 | ], 1346 | "settings": { 1347 | "fontStyle": "bold", 1348 | "foreground": "#bf0000" //8 1349 | } 1350 | }, 1351 | { 1352 | "name": "Markup - Bold-Italic", 1353 | "scope": [ 1354 | "markup.bold markup.italic", 1355 | "markup.italic markup.bold", 1356 | "markup.quote markup.bold", 1357 | "markup.bold markup.italic string", 1358 | "markup.italic markup.bold string", 1359 | "markup.quote markup.bold string" 1360 | ], 1361 | "settings": { 1362 | "fontStyle": "bold", 1363 | "foreground": "#bf0000" //8 1364 | } 1365 | }, 1366 | { 1367 | "name": "Markup - Underline", 1368 | "scope": [ 1369 | "markup.underline" 1370 | ], 1371 | "settings": { 1372 | "fontStyle": "underline", 1373 | "foreground": "#ba3700" //9 1374 | } 1375 | }, 1376 | { 1377 | "name": "Markdown - Blockquote", 1378 | "scope": [ 1379 | "markup.quote punctuation.definition.blockquote.markdown" 1380 | ], 1381 | "settings": { 1382 | "foreground": "#009a8a" //C 1383 | } 1384 | }, 1385 | { 1386 | "name": "Markup - Quote", 1387 | "scope": [ 1388 | "markup.quote" 1389 | ], 1390 | "settings": { 1391 | "fontStyle": "italic" 1392 | } 1393 | }, 1394 | { 1395 | "name": "Markdown - Link", 1396 | "scope": [ 1397 | "string.other.link.title.markdown" 1398 | ], 1399 | "settings": { 1400 | "foreground": "#0054cf" //D 1401 | } 1402 | }, 1403 | { 1404 | "name": "Markdown - Link Description", 1405 | "scope": [ 1406 | "string.other.link.description.title.markdown" 1407 | ], 1408 | "settings": { 1409 | "foreground": "#6b40c3" //E 1410 | } 1411 | }, 1412 | { 1413 | "name": "Markdown - Link Anchor", 1414 | "scope": [ 1415 | "constant.other.reference.link.markdown" 1416 | ], 1417 | "settings": { 1418 | "foreground": "#af8500" //A 1419 | } 1420 | }, 1421 | { 1422 | "name": "Markup - Raw Block", 1423 | "scope": [ 1424 | "markup.raw.block" 1425 | ], 1426 | "settings": { 1427 | "foreground": "#6b40c3" //E 1428 | } 1429 | }, 1430 | { 1431 | "name": "Markdown - Raw Block Fenced", 1432 | "scope": [ 1433 | "markup.raw.block.fenced.markdown" 1434 | ], 1435 | "settings": { 1436 | "foreground": "#00000050" 1437 | } 1438 | }, 1439 | { 1440 | "name": "Markdown - Fenced Bode Block", 1441 | "scope": [ 1442 | "punctuation.definition.fenced.markdown" 1443 | ], 1444 | "settings": { 1445 | "foreground": "#00000050" 1446 | } 1447 | }, 1448 | { 1449 | "name": "Markdown - Fenced Code Block Variable", 1450 | "scope": [ 1451 | "markup.raw.block.fenced.markdown", 1452 | "variable.language.fenced.markdown" 1453 | ], 1454 | "settings": { 1455 | "foreground": "#6b40c3" //E 1456 | } 1457 | }, 1458 | { 1459 | "name": "Markdown - Fenced Language", 1460 | "scope": [ 1461 | "variable.language.fenced.markdown" 1462 | ], 1463 | "settings": { 1464 | "foreground": "#bf0000" //8 1465 | } 1466 | }, 1467 | { 1468 | "name": "Markdown - Separator", 1469 | "scope": [ 1470 | "meta.separator" 1471 | ], 1472 | "settings": { 1473 | "fontStyle": "bold", 1474 | "foreground": "#009a8a" //C 1475 | } 1476 | }, 1477 | { 1478 | "name": "Markup - Table", 1479 | "scope": [ 1480 | "markup.table" 1481 | ], 1482 | "settings": { 1483 | "foreground": "#6b40c3" //E 1484 | } 1485 | }, 1486 | { 1487 | "scope": "token.info-token", 1488 | "settings": { 1489 | "foreground": "#0054cf" //D 1490 | } 1491 | }, 1492 | { 1493 | "scope": "token.warn-token", 1494 | "settings": { 1495 | "foreground": "#af8500" //A 1496 | } 1497 | }, 1498 | { 1499 | "scope": "token.error-token", 1500 | "settings": { 1501 | "foreground": "#bf0000" //8 1502 | } 1503 | }, 1504 | { 1505 | "scope": "token.debug-token", 1506 | "settings": { 1507 | "foreground": "#6b40c3" //E 1508 | } 1509 | } 1510 | ] 1511 | } 1512 | --------------------------------------------------------------------------------