├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── logo.png └── screenshots │ ├── dark.png │ ├── light.png │ └── yellow.png ├── package.json └── themes ├── OneC-dark-color-theme.json ├── OneC-light-color-theme.json └── OneC-yellow-color-theme.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.vsix 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | // A launch configuration that launches the extension inside a new window 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | { 6 | "version": "0.2.0", 7 | "configurations": [ 8 | { 9 | "name": "Extension", 10 | "type": "extensionHost", 11 | "request": "launch", 12 | "args": [ 13 | "--disable-extensions", 14 | "--extensionDevelopmentPath=${workspaceFolder}" 15 | ] 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | .vsix 4 | .gitignore 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | 0.3.2 - Various improvements 4 | 0.3.1 - Added new light theme, the old "light" theme has become a "Yellow" theme 5 | 0.2.1 - Improvements for syntax highlighting 6 | 0.2.0 - Added dark version 7 | 0.1.0 - Initial release 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 Andrei Chernyak 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vscode-onec-theme 2 | 3 | Темы оформления для Visual Studio Code разработанные по мотивам различных расцветок вокруг да около платформы 1С:Предприятие. 4 | 5 | Подсветка синтаксиса встроенного языка 1С:Предприятие и [OneScript](http://oscript.io/), а также языка запросов 1С:Предприятие - при наличии установленного плагина [vsc-language-1c-bsl](https://marketplace.visualstudio.com/items?itemName=1c-syntax.language-1c-bsl). 6 | Подсветка синтаксиса в файлах `xbsl` и `sbsl` - при наличии плагина [vscode-xbslplugin](https://github.com/bia-technologies/vscode-xbslplugin) (или официальный плагин [1C:Executor](https://marketplace.visualstudio.com/items?itemName=1c-soft.1c-executor-plugin)). 7 | Подсветка синтаксиса в файлах `feature` - при наличии установленного плагина [Cucumber (Gherkin) Full Support](https://marketplace.visualstudio.com/items?itemName=alexkrechik.cucumberautocomplete) 8 | 9 | ## Примеры 10 | 11 | OneC Light: 12 | ![Пример светлой темы](images/screenshots/light.png) 13 | 14 | OneC Yellow: 15 | ![Пример жёлтой темы](images/screenshots/yellow.png) 16 | 17 | OneC Dark: 18 | ![Пример тёмной темы](images/screenshots/dark.png) 19 | 20 | ## Установка 21 | 22 | ### 1. Вручную из файла расширения 23 | 24 | 1. Скачайте расширение со страницы [релизов](https://github.com/ChernyakAI/vscode-onec-theme/releases). 25 | 2. В Visual Studio Code нажмите на значок "Расширения" (Extensions) в левой части окна 26 | 3. В открывшейся панели расширений в верхней части нажмите на "..." и выберите из выпадающего списка "Установка из VSIX(Install from VSIX) 27 | 4. После установки перейдите Файл -> Настройки -> Тема -> Цветовая тема (File -> Preferences -> Theme -> Color Theme) 28 | В появившемся меню выберите необходимый вариант. 29 | 30 | ### 2. Из магазина приложений 31 | 32 | 1. В Visual Studio Code перейдите на вкладку "Расширения" 33 | 2. В окне поиска введите "OneC Theme" 34 | 3. Установите расширение 35 | 4. Выберите необходимый вариант 36 | -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyakAI/vscode-onec-theme/fd13ba169c527c7b9f2b8f69763a9f206846c931/images/logo.png -------------------------------------------------------------------------------- /images/screenshots/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyakAI/vscode-onec-theme/fd13ba169c527c7b9f2b8f69763a9f206846c931/images/screenshots/dark.png -------------------------------------------------------------------------------- /images/screenshots/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyakAI/vscode-onec-theme/fd13ba169c527c7b9f2b8f69763a9f206846c931/images/screenshots/light.png -------------------------------------------------------------------------------- /images/screenshots/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChernyakAI/vscode-onec-theme/fd13ba169c527c7b9f2b8f69763a9f206846c931/images/screenshots/yellow.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "onec", 3 | "displayName": "OneC Theme", 4 | "description": "The color theme for Visual Studio Code", 5 | "version": "0.3.2", 6 | "publisher": "chernyakai", 7 | "license": "MIT", 8 | "bugs": { 9 | "url": "https://github.com/ChernyakAI/vscode-onec-theme/issues" 10 | }, 11 | "homepage": "", 12 | "repository": { 13 | "type": "git", 14 | "url": "https://github.com/ChernyakAI/vscode-onec-theme" 15 | }, 16 | "engines": { 17 | "vscode": "^1.98.2" 18 | }, 19 | "categories": [ 20 | "Themes" 21 | ], 22 | "contributes": { 23 | "themes": [ 24 | { 25 | "label": "OneC Light", 26 | "uiTheme": "vs", 27 | "path": "./themes/OneC-light-color-theme.json" 28 | }, 29 | { 30 | "label": "OneC Yellow", 31 | "uiTheme": "vs", 32 | "path": "./themes/OneC-yellow-color-theme.json" 33 | }, 34 | { 35 | "label": "OneC Dark", 36 | "uiTheme": "vs-dark", 37 | "path": "./themes/OneC-dark-color-theme.json" 38 | } 39 | ] 40 | }, 41 | "icon": "images/logo.png" 42 | } 43 | -------------------------------------------------------------------------------- /themes/OneC-dark-color-theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "vscode://schemas/color-theme", 3 | "type": "dark", 4 | "colors": { 5 | "actionBar.toggledBackground": "#383a49", 6 | "activityBar.activeBackground": "#08366179", 7 | "activityBar.activeBorder": "#29414d", 8 | "activityBar.activeFocusBorder": "#637d8b", 9 | "activityBar.background": "#141c20", 10 | "activityBar.border": "#637d8b73", 11 | "activityBar.dropBorder": "#637d8b", 12 | "activityBar.foreground": "#637d8b", 13 | "activityBar.inactiveForeground": "#637d8b", 14 | "activityBarBadge.background": "#00456a", 15 | "activityBarBadge.foreground": "#7796a7", 16 | "activityBarTop.activeBackground": "#0f41708e", 17 | "activityBarTop.activeBorder": "#365463", 18 | "activityBarTop.background": "#141c20", 19 | "activityBarTop.dropBorder": "#637d8b", 20 | "activityBarTop.foreground": "#637d8b", 21 | "activityBarTop.inactiveForeground": "#637d8b", 22 | "activityErrorBadge.background": "#57130a", 23 | "activityErrorBadge.foreground": "#a45555", 24 | "activityWarningBadge.background": "#513300", 25 | "activityWarningBadge.foreground": "#ba8c3e", 26 | "badge.background": "#2b495a", 27 | "badge.foreground": "#6b97ca", 28 | "banner.background": "#042433", 29 | "banner.foreground": "#637d8b", 30 | "banner.iconForeground": "#258bd3", 31 | "breadcrumb.activeSelectionForeground": "#637d8b73", 32 | "breadcrumb.background": "#19262c", 33 | "breadcrumb.focusForeground": "#637d8b", 34 | "breadcrumb.foreground": "#637d8ba8", 35 | "breadcrumbPicker.background": "#19262c", 36 | "button.background": "#19262c", 37 | "button.border": "#76889277", 38 | "button.foreground": "#768892", 39 | "button.hoverBackground": "#2e404984", 40 | "button.secondaryBackground": "#19262c", 41 | "button.secondaryForeground": "#768892", 42 | "button.secondaryHoverBackground": "#2e404984", 43 | "button.separator": "#76889277", 44 | "chat.editedFileForeground": "#e2c08d", 45 | "chat.slashCommandBackground": "#34414b", 46 | "chat.slashCommandForeground": "#40a6ff", 47 | "checkbox.background": "#2e4049", 48 | "checkbox.border": "#76889277", 49 | "checkbox.foreground": "#768892", 50 | "checkbox.selectBackground": "#b0c7f83d", 51 | "checkbox.selectBorder": "#8c8c90", 52 | "commandCenter.activeBackground": "#141c20", 53 | "commandCenter.activeBorder": "#637d8b73", 54 | "commandCenter.activeForeground": "#637d8b", 55 | "commandCenter.background": "#141c20", 56 | "commandCenter.debuggingBackground": "#012a0f30", 57 | "commandCenter.foreground": "#637d8b", 58 | "commandCenter.inactiveBorder": "#637d8b73", 59 | "commandCenter.inactiveForeground": "#637d8b", 60 | "debugConsole.errorForeground": "#a45c5ce0", 61 | "debugConsole.infoForeground": "#567281", 62 | "debugConsole.sourceForeground": "#567281", 63 | "debugConsole.warningForeground": "#928362ba", 64 | "debugConsoleInputIcon.foreground": "#567281", 65 | "debugExceptionWidget.background": "#63040408", 66 | "debugExceptionWidget.border": "#593434", 67 | "debugIcon.breakpointCurrentStackframeForeground": "#4ca4509f", 68 | "debugIcon.breakpointDisabledForeground": "#63cc6a3d", 69 | "debugIcon.breakpointForeground": "#4ca4509f", 70 | "debugIcon.breakpointStackframeForeground": "#4ca4509f", 71 | "debugIcon.breakpointUnverifiedForeground": "#aac2ab7e", 72 | "debugIcon.continueForeground": "#4b8c3bad", 73 | "debugIcon.disconnectForeground": "#bd4f4f", 74 | "debugIcon.pauseForeground": "#bc8401", 75 | "debugIcon.restartForeground": "#bc8401ba", 76 | "debugIcon.startForeground": "#75ac78", 77 | "debugIcon.stepBackForeground": "#5570b5", 78 | "debugIcon.stepIntoForeground": "#5570b5", 79 | "debugIcon.stepOutForeground": "#5570b5", 80 | "debugIcon.stepOverForeground": "#5570b5", 81 | "debugIcon.stopForeground": "#bd4f4f", 82 | "debugTokenExpression.boolean": "#949191", 83 | "debugTokenExpression.error": "#ca2c2c", 84 | "debugTokenExpression.name": "#637d8b", 85 | "debugTokenExpression.number": "#949191", 86 | "debugTokenExpression.string": "#949191", 87 | "debugTokenExpression.value": "#949191", 88 | "debugToolBar.background": "#19262c", 89 | "debugToolBar.border": "#637d8b6e", 90 | "debugView.valueChangedHighlight": "#19659c", 91 | "descriptionForeground": "#7a7e80", 92 | "diffEditor.border": "#2c2c2c", 93 | "diffEditor.diagonalFill": "#1d7eec00", 94 | "diffEditor.insertedLineBackground": "#69ff4400", 95 | "diffEditor.insertedTextBackground": "#69ff4415", 96 | "diffEditor.insertedTextBorder": "#092e0000", 97 | "diffEditor.move.border": "#9b181800", 98 | "diffEditor.moveActive.border": "#ffa60000", 99 | "diffEditor.removedLineBackground": "#cb373700", 100 | "diffEditor.removedTextBackground": "#db4e4e21", 101 | "diffEditor.removedTextBorder": "#87191900", 102 | "diffEditor.unchangedCodeBackground": "#3179c713", 103 | "diffEditor.unchangedRegionBackground": "#8ca2ba13", 104 | "diffEditor.unchangedRegionForeground": "#637d8b", 105 | "diffEditor.unchangedRegionShadow": "#000000", 106 | "diffEditorGutter.insertedLineBackground": "#24b20007", 107 | "diffEditorGutter.removedLineBackground": "#db4e4e08", 108 | "diffEditorOverview.insertedForeground": "#0096342a", 109 | "diffEditorOverview.removedForeground": "#c74e394a", 110 | "disabledForeground": "#4c7f8f", 111 | "dropdown.background": "#19262c", 112 | "dropdown.border": "#637d8b", 113 | "dropdown.foreground": "#637d8b", 114 | "dropdown.listBackground": "#19262c", 115 | "editor.background": "#141c20", 116 | "editor.findMatchBackground": "#32485347", 117 | "editor.findMatchBorder": "#324853b1", 118 | "editor.findMatchForeground": "#627e92", 119 | "editor.findMatchHighlightBackground": "#32485347", 120 | "editor.findMatchHighlightBorder": "#324853b1", 121 | "editor.findMatchHighlightForeground": "#627e92c4", 122 | "editor.findRangeHighlightBackground": "#32485347", 123 | "editor.findRangeHighlightBorder": "#32485347", 124 | "editor.focusedStackFrameHighlightBackground": "#32485371", 125 | "editor.foldBackground": "#58606915", 126 | "editor.foldPlaceholderForeground": "#a6afbf77", 127 | "editor.foreground": "#295978", 128 | "editor.hoverHighlightBackground": "#32485347", 129 | "editor.inactiveSelectionBackground": "#192630e8", 130 | "editor.lineHighlightBackground": "#1d282e6c", 131 | "editor.lineHighlightBorder": "#1d282e6c", 132 | "editor.linkedEditingBackground": "#3392ff22", 133 | "editor.rangeHighlightBackground": "#32485347", 134 | "editor.rangeHighlightBorder": "#4151b85f", 135 | "editor.selectionBackground": "#1e2d389e", 136 | "editor.selectionHighlightBackground": "#19263044", 137 | "editor.selectionHighlightBorder": "#233544", 138 | "editor.snippetFinalTabstopHighlightBackground": "#034264", 139 | "editor.snippetFinalTabstopHighlightBorder": "#034264", 140 | "editor.snippetTabstopHighlightBackground": "#03426400", 141 | "editor.snippetTabstopHighlightBorder": "#274a5dc9", 142 | "editor.stackFrameHighlightBackground": "#32485371", 143 | "editor.symbolHighlightBackground": "#4d708100", 144 | "editor.symbolHighlightBorder": "#325667c0", 145 | "editor.wordHighlightBackground": "#034264c9", 146 | "editor.wordHighlightBorder": "#034264c9", 147 | "editor.wordHighlightStrongBackground": "#045683c9", 148 | "editor.wordHighlightStrongBorder": "#045683c9", 149 | "editor.wordHighlightTextBackground": "#19263024", 150 | "editor.wordHighlightTextBorder": "#57666fc9", 151 | "editorBracketHighlight.foreground1": "#295978", 152 | "editorBracketHighlight.foreground2": "#295978", 153 | "editorBracketHighlight.foreground3": "#295978", 154 | "editorBracketHighlight.foreground4": "#295978", 155 | "editorBracketHighlight.foreground5": "#295978", 156 | "editorBracketHighlight.foreground6": "#295978", 157 | "editorBracketHighlight.unexpectedBracket.foreground": "#b03e3ecc", 158 | "editorBracketMatch.background": "#143c4dc5", 159 | "editorBracketMatch.border": "#265061", 160 | "editorBracketPairGuide.activeBackground1": "#295978", 161 | "editorBracketPairGuide.activeBackground2": "#295978", 162 | "editorBracketPairGuide.activeBackground3": "#295978", 163 | "editorBracketPairGuide.activeBackground4": "#295978", 164 | "editorBracketPairGuide.activeBackground5": "#295978", 165 | "editorBracketPairGuide.activeBackground6": "#295978", 166 | "editorBracketPairGuide.background1": "#295978", 167 | "editorBracketPairGuide.background2": "#295978", 168 | "editorBracketPairGuide.background3": "#295978", 169 | "editorBracketPairGuide.background4": "#295978", 170 | "editorBracketPairGuide.background5": "#295978", 171 | "editorBracketPairGuide.background6": "#295978", 172 | "editorCodeLens.foreground": "#8ccfff24", 173 | "editorCommentsWidget.rangeActiveBackground": "#978333", 174 | "editorCommentsWidget.rangeBackground": "#eadba06c", 175 | "editorCommentsWidget.replyInputBackground": "#335a8142", 176 | "editorCommentsWidget.resolvedBorder": "#087e0a93", 177 | "editorCommentsWidget.unresolvedBorder": "#0e5b75", 178 | "editorCursor.background": "#1b2125", 179 | "editorCursor.foreground": "#627e92", 180 | "editorError.background": "#67373700", 181 | "editorError.border": "#67373700", 182 | "editorError.foreground": "#673737", 183 | "editorGhostText.foreground": "#ffffff1b", 184 | "editorGroup.border": "#637d8b73", 185 | "editorGroup.dropBackground": "#003e5f34", 186 | "editorGroup.dropIntoPromptBackground": "#637d8b73", 187 | "editorGroup.dropIntoPromptBorder": "#637d8b", 188 | "editorGroup.dropIntoPromptForeground": "#637d8b", 189 | "editorGroup.emptyBackground": "#141c20", 190 | "editorGroup.focusedEmptyBorder": "#141c20", 191 | "editorGroupHeader.border": "#637d8b73", 192 | "editorGroupHeader.noTabsBackground": "#141c20", 193 | "editorGroupHeader.tabsBackground": "#141c20", 194 | "editorGroupHeader.tabsBorder": "#637d8b73", 195 | "editorGutter.addedBackground": "#11611881", 196 | "editorGutter.background": "#141c20", 197 | "editorGutter.deletedBackground": "#9b181885", 198 | "editorGutter.foldingControlForeground": "#637d8b", 199 | "editorGutter.modifiedBackground": "#ffcb3c3d", 200 | "editorHint.border": "#5f64a5", 201 | "editorHint.foreground": "#ff000000", 202 | "editorHoverWidget.background": "#1a252b", 203 | "editorHoverWidget.border": "#365463", 204 | "editorHoverWidget.foreground": "#637d8b", 205 | "editorHoverWidget.highlightForeground": "#406f85", 206 | "editorHoverWidget.statusBarBackground": "#1e303a", 207 | "editorIndentGuide.activeBackground1": "#444d56", 208 | "editorIndentGuide.activeBackground2": "#024c7460", 209 | "editorIndentGuide.activeBackground3": "#024c7460", 210 | "editorIndentGuide.activeBackground4": "#024c7460", 211 | "editorIndentGuide.activeBackground5": "#024c7460", 212 | "editorIndentGuide.activeBackground6": "#024c7460", 213 | "editorIndentGuide.background1": "#2f363d", 214 | "editorIndentGuide.background2": "#024c7460", 215 | "editorIndentGuide.background3": "#024c7460", 216 | "editorIndentGuide.background4": "#024c7460", 217 | "editorIndentGuide.background5": "#024c7460", 218 | "editorIndentGuide.background6": "#024c7460", 219 | "editorInfo.background": "#4789f400", 220 | "editorInfo.border": "#4789f400", 221 | "editorInfo.foreground": "#007bff4c", 222 | "editorInlayHint.background": "#141c20", 223 | "editorInlayHint.foreground": "#8ccfff29", 224 | "editorInlayHint.parameterBackground": "#141c20", 225 | "editorInlayHint.parameterForeground": "#8ccfff29", 226 | "editorInlayHint.typeBackground": "#141c20", 227 | "editorInlayHint.typeForeground": "#8ccfff29", 228 | "editorLightBulb.foreground": "#1e6b8bc5", 229 | "editorLightBulbAi.foreground": "#1e6b8bc5", 230 | "editorLightBulbAutoFix.foreground": "#286a86c5", 231 | "editorLineNumber.activeForeground": "#4d7081", 232 | "editorLineNumber.dimmedForeground": "#4d7081", 233 | "editorLineNumber.foreground": "#2e434e", 234 | "editorLink.activeForeground": "#75b0cdc0", 235 | "editorMarkerNavigation.background": "#041b293a", 236 | "editorMarkerNavigationError.background": "#452f2f", 237 | "editorMarkerNavigationError.headerBackground": "#50212159", 238 | "editorMarkerNavigationInfo.background": "#374962", 239 | "editorMarkerNavigationInfo.headerBackground": "#0d326675", 240 | "editorMarkerNavigationWarning.background": "#93723a55", 241 | "editorMarkerNavigationWarning.headerBackground": "#4f3c1a55", 242 | "editorOverviewRuler.addedForeground": "#116118", 243 | "editorOverviewRuler.background": "#141c20", 244 | "editorOverviewRuler.border": "#141c20", 245 | "editorOverviewRuler.currentContentForeground": "#e58d7c6d", 246 | "editorOverviewRuler.deletedForeground": "#9b1818", 247 | "editorOverviewRuler.errorForeground": "#ff2b2b6e", 248 | "editorOverviewRuler.findMatchForeground": "#92abd43e", 249 | "editorOverviewRuler.incomingContentForeground": "#8be77f35", 250 | "editorOverviewRuler.infoForeground": "#385cff56", 251 | "editorOverviewRuler.modifiedForeground": "#ffcb3c3d", 252 | "editorOverviewRuler.selectionHighlightForeground": "#034264c9", 253 | "editorOverviewRuler.warningForeground": "#ff9a473e", 254 | "editorPane.background": "#19262c", 255 | "editorRuler.foreground": "#024c7460", 256 | "editorStickyScroll.background": "#141c20", 257 | "editorStickyScroll.border": "#1d282e", 258 | "editorStickyScroll.shadow": "#1d282e", 259 | "editorStickyScrollHover.background": "#1d282e", 260 | "editorSuggestWidget.background": "#1a252b", 261 | "editorSuggestWidget.border": "#324853", 262 | "editorSuggestWidget.focusHighlightForeground": "#6387a1", 263 | "editorSuggestWidget.foreground": "#9bc7ce4f", 264 | "editorSuggestWidget.highlightForeground": "#6387a1b1", 265 | "editorSuggestWidget.selectedBackground": "#24323a", 266 | "editorSuggestWidget.selectedForeground": "#386b8f", 267 | "editorSuggestWidget.selectedIconForeground": "#386b8f", 268 | "editorUnnecessaryCode.border": "#97804c8e", 269 | "editorUnnecessaryCode.opacity": "#000000c0", 270 | "editorWarning.background": "#97804c00", 271 | "editorWarning.border": "#97804c00", 272 | "editorWarning.foreground": "#97804c8e", 273 | "editorWatermark.foreground": "#4d7081", 274 | "editorWhitespace.foreground": "#42586330", 275 | "editorWidget.background": "#222e35", 276 | "editorWidget.border": "#637d8b", 277 | "editorWidget.foreground": "#637d8b", 278 | "editorWidget.resizeBorder": "#324853", 279 | "errorForeground": "#855b5b", 280 | "extensionButton.background": "#2e4049", 281 | "extensionButton.foreground": "#637d8b", 282 | "extensionButton.hoverBackground": "#2e4049", 283 | "extensionButton.prominentBackground": "#14567ac2", 284 | "extensionButton.prominentForeground": "#637d8b", 285 | "extensionButton.separator": "#637d8b", 286 | "extensionIcon.preReleaseForeground": "#1a316a", 287 | "extensionIcon.sponsorForeground": "#a31010", 288 | "extensionIcon.starForeground": "#b97215c2", 289 | "extensionIcon.verifiedForeground": "#328427", 290 | "focusBorder": "#43545e", 291 | "foreground": "#637d8b", 292 | "gitDecoration.addedResourceForeground": "#4ca450", 293 | "gitDecoration.conflictingResourceForeground": "#9b1818", 294 | "gitDecoration.deletedResourceForeground": "#9b1818", 295 | "gitDecoration.ignoredResourceForeground": "#637d8b73", 296 | "gitDecoration.modifiedResourceForeground": "#ffcb3c7a", 297 | "gitDecoration.renamedResourceForeground": "#ffcb3c7a", 298 | "gitDecoration.stageDeletedResourceForeground": "#9b1818", 299 | "gitDecoration.stageModifiedResourceForeground": "#ffcb3c7a", 300 | "gitDecoration.submoduleResourceForeground": "#ff000000", 301 | "gitDecoration.untrackedResourceForeground": "#4e8a53", 302 | "icon.foreground": "#637d8b", 303 | "input.background": "#19262c", 304 | "input.border": "#43545e", 305 | "input.foreground": "#637d8b", 306 | "input.placeholderForeground": "#637d8b8a", 307 | "inputOption.activeBackground": "#19262c", 308 | "inputOption.activeBorder": "#637d8b", 309 | "inputOption.activeForeground": "#637d8b", 310 | "inputOption.hoverBackground": "#247eaf4d", 311 | "inputValidation.errorBackground": "#331e1e", 312 | "inputValidation.errorBorder": "#ca6b6b", 313 | "inputValidation.errorForeground": "#ca6b6b", 314 | "inputValidation.infoBackground": "#1e2733", 315 | "inputValidation.infoBorder": "#6b97ca", 316 | "inputValidation.infoForeground": "#6b97ca", 317 | "inputValidation.warningBackground": "#332d1e", 318 | "inputValidation.warningBorder": "#978450", 319 | "inputValidation.warningForeground": "#978450", 320 | "keybindingLabel.background": "#19262c", 321 | "keybindingLabel.border": "#637d8b6e", 322 | "keybindingLabel.bottomBorder": "#637d8b6e", 323 | "keybindingLabel.foreground": "#637d8b", 324 | "keybindingTable.headerBackground": "#19262c", 325 | "keybindingTable.rowsBackground": "#19262c", 326 | "list.activeSelectionBackground": "#003e5f77", 327 | "list.activeSelectionForeground": "#637d8b", 328 | "list.activeSelectionIconForeground": "#637d8b", 329 | "list.dropBackground": "#003e5f77", 330 | "list.errorForeground": "#ce5b5bbb", 331 | "list.filterMatchBackground": "#003e5f77", 332 | "list.filterMatchBorder": "#6d92a7", 333 | "list.focusAndSelectionOutline": "#949191", 334 | "list.focusBackground": "#003e5f77", 335 | "list.focusForeground": "#637d8b", 336 | "list.focusHighlightForeground": "#738e9c", 337 | "list.focusOutline": "#949191", 338 | "list.highlightForeground": "#637d8b", 339 | "list.hoverBackground": "#293c46", 340 | "list.hoverForeground": "#637d8b", 341 | "list.inactiveFocusBackground": "#003e5f77", 342 | "list.inactiveFocusOutline": "#949191", 343 | "list.inactiveSelectionBackground": "#003e5f77", 344 | "list.inactiveSelectionForeground": "#637d8b", 345 | "list.inactiveSelectionIconForeground": "#637d8b", 346 | "list.invalidItemForeground": "#57130a", 347 | "list.warningForeground": "#c4a75fb0", 348 | "listFilterWidget.background": "#222e35", 349 | "listFilterWidget.noMatchesOutline": "#ff004000", 350 | "listFilterWidget.outline": "#ff000000", 351 | "listFilterWidget.shadow": "#52515190", 352 | "menu.background": "#19262c", 353 | "menu.border": "#637d8b73", 354 | "menu.foreground": "#637d8b", 355 | "menu.selectionBackground": "#19262c", 356 | "menu.selectionBorder": "#19262c", 357 | "menu.selectionForeground": "#6d92a7", 358 | "menu.separatorBackground": "#637d8b73", 359 | "menubar.selectionBackground": "#141c20", 360 | "menubar.selectionBorder": "#637d8b73", 361 | "menubar.selectionForeground": "#637d8b", 362 | "merge.border": "#0c7e0ca8", 363 | "merge.currentContentBackground": "#e57c7c0c", 364 | "merge.currentHeaderBackground": "#5c2a2130", 365 | "merge.incomingContentBackground": "#7ce58508", 366 | "merge.incomingHeaderBackground": "#5c2a2130", 367 | "mergeEditor.change.background": "#69ff4400", 368 | "mergeEditor.change.word.background": "#69ff4415", 369 | "mergeEditor.changeBase.background": "#69ff4400", 370 | "mergeEditor.changeBase.word.background": "#69ff4415", 371 | "mergeEditor.conflict.handled.minimapOverViewRuler": "#0a460f", 372 | "mergeEditor.conflict.handledFocused.border": "#0a460f", 373 | "mergeEditor.conflict.handledUnfocused.border": "#0a460f", 374 | "mergeEditor.conflict.unhandled.minimapOverViewRuler": "#fc61616b", 375 | "mergeEditor.conflict.unhandledFocused.border": "#fc61616b", 376 | "mergeEditor.conflict.unhandledUnfocused.border": "#fc61616b", 377 | "minimap.background": "#19262c", 378 | "minimap.errorHighlight": "#b32f2f78", 379 | "minimap.findMatchHighlight": "#0c5e8773", 380 | "minimap.foregroundOpacity": "#000000c0", 381 | "minimap.infoHighlight": "#1a569b6f", 382 | "minimap.selectionHighlight": "#496572c7", 383 | "minimap.selectionOccurrenceHighlight": "#dedede3f", 384 | "minimap.warningHighlight": "#ff73006d", 385 | "minimapGutter.addedBackground": "#116118", 386 | "minimapGutter.deletedBackground": "#9b1818", 387 | "minimapGutter.modifiedBackground": "#b18305", 388 | "minimapSlider.activeBackground": "#0378b82c", 389 | "minimapSlider.background": "#0378b82c", 390 | "minimapSlider.hoverBackground": "#247faf2c", 391 | "multiDiffEditor.background": "#8ca2ba13", 392 | "multiDiffEditor.headerBackground": "#8ca2ba13", 393 | "notebook.cellBorderColor": "#637d8b73", 394 | "notebook.cellEditorBackground": "#19262c", 395 | "notebook.cellHoverBackground": "#141c20", 396 | "notebook.cellStatusBarItemHoverBackground": "#174667", 397 | "notebook.cellToolbarSeparator": "#637d8b6e", 398 | "notebook.editorBackground": "#141c20", 399 | "notebook.focusedCellBorder": "#174667", 400 | "notebook.focusedEditorBorder": "#174667", 401 | "notebook.inactiveFocusedCellBorder": "#637d8b73", 402 | "notebook.inactiveSelectedCellBorder": "#637d8b73", 403 | "notebook.outputContainerBackgroundColor": "#141c20", 404 | "notebook.outputContainerBorderColor": "#637d8b73", 405 | "notebookEditorOverviewRuler.runningCellForeground": "#637d8b6e", 406 | "notebookScrollbarSlider.activeBackground": "#00a6ff6e", 407 | "notebookScrollbarSlider.background": "#00a6ff34", 408 | "notebookScrollbarSlider.hoverBackground": "#00a6ff4f", 409 | "notebookStatusErrorIcon.foreground": "#9b1818", 410 | "notebookStatusRunningIcon.foreground": "#54629f", 411 | "notebookStatusSuccessIcon.foreground": "#4ca4509f", 412 | "notificationCenter.border": "#637d8b", 413 | "notificationCenterHeader.background": "#141c20", 414 | "notificationCenterHeader.foreground": "#637d8b", 415 | "notificationLink.foreground": "#258bd3", 416 | "notificationToast.border": "#637d8b", 417 | "notifications.background": "#1d2a30", 418 | "notifications.border": "#637d8b6e", 419 | "notifications.foreground": "#637d8b", 420 | "notificationsErrorIcon.foreground": "#9b1818", 421 | "notificationsInfoIcon.foreground": "#54629f", 422 | "notificationsWarningIcon.foreground": "#ab6730", 423 | "panel.background": "#10171b", 424 | "panel.border": "#637d8b73", 425 | "panel.dropBorder": "#637d8b73", 426 | "panelInput.border": "#43545e", 427 | "panelSection.border": "#637d8b73", 428 | "panelSection.dropBackground": "#003e5f34", 429 | "panelSectionHeader.background": "#141c20", 430 | "panelSectionHeader.border": "#637d8b73", 431 | "panelSectionHeader.foreground": "#55636e", 432 | "panelTitle.activeBorder": "#19262c", 433 | "panelTitle.activeForeground": "#637d8b", 434 | "panelTitle.inactiveForeground": "#637d8b73", 435 | "peekView.border": "#45565e", 436 | "peekViewEditor.background": "#141c20", 437 | "peekViewEditor.matchHighlightBackground": "#1d282e6c", 438 | "peekViewEditor.matchHighlightBorder": "#1d432c", 439 | "peekViewEditorGutter.background": "#1a242843", 440 | "peekViewEditorStickyScroll.background": "#1a2428", 441 | "peekViewResult.background": "#1a242843", 442 | "peekViewResult.fileForeground": "#ff000000", 443 | "peekViewResult.lineForeground": "#295978", 444 | "peekViewResult.matchHighlightBackground": "#25404e74", 445 | "peekViewResult.selectionBackground": "#141c205c", 446 | "peekViewResult.selectionForeground": "#295878", 447 | "peekViewTitle.background": "#192a32", 448 | "peekViewTitleDescription.foreground": "#78a2c48a", 449 | "peekViewTitleLabel.foreground": "#78a2c48a", 450 | "pickerGroup.border": "#637d8b6e", 451 | "pickerGroup.foreground": "#637d8ba8", 452 | "ports.iconRunningProcessForeground": "#369432", 453 | "problemsErrorIcon.foreground": "#673737", 454 | "problemsInfoIcon.foreground": "#68a8ed4c", 455 | "problemsWarningIcon.foreground": "#97804c8e", 456 | "profileBadge.background": "#00456a", 457 | "profileBadge.foreground": "#7796a7", 458 | "profiles.sashBorder": "#76889277", 459 | "progressBar.background": "#316382", 460 | "quickInput.background": "#19262c", 461 | "quickInput.foreground": "#637d8b", 462 | "quickInputList.focusBackground": "#003e5f77", 463 | "quickInputList.focusForeground": "#637d8b", 464 | "quickInputList.focusIconForeground": "#19659c", 465 | "quickInputTitle.background": "#141c20", 466 | "sash.hoverBorder": "#637d8b", 467 | "scmGraph.foreground1": "#926300", 468 | "scmGraph.foreground2": "#864b4b", 469 | "scmGraph.foreground3": "#596a89", 470 | "scmGraph.foreground4": "#26968c", 471 | "scmGraph.foreground5": "#6d5a81", 472 | "scmGraph.historyItemBaseRefColor": "#6996de", 473 | "scmGraph.historyItemHoverAdditionsForeground": "#52875c", 474 | "scmGraph.historyItemHoverDefaultLabelBackground": "#5d8cc2", 475 | "scmGraph.historyItemHoverDefaultLabelForeground": "#000000", 476 | "scmGraph.historyItemHoverDeletionsForeground": "#bf5846", 477 | "scmGraph.historyItemHoverLabelForeground": "#000000", 478 | "scmGraph.historyItemRefColor": "#337b50", 479 | "scmGraph.historyItemRemoteRefColor": "#96803d", 480 | "scrollbar.shadow": "#5a61616c", 481 | "scrollbarSlider.activeBackground": "#005c8d6e", 482 | "scrollbarSlider.background": "#00456b4f", 483 | "scrollbarSlider.hoverBackground": "#0054814f", 484 | "search.resultsInfoForeground": "#4d7081", 485 | "searchEditor.findMatchBackground": "#32485347", 486 | "searchEditor.findMatchBorder": "#324853b1", 487 | "searchEditor.textInputBorder": "#4654b0", 488 | "selection.background": "#234153", 489 | "settings.checkboxBackground": "#19262c", 490 | "settings.checkboxBorder": "#76889277", 491 | "settings.checkboxForeground": "#768892", 492 | "settings.dropdownBackground": "#19262c", 493 | "settings.dropdownBorder": "#76889277", 494 | "settings.dropdownForeground": "#768892", 495 | "settings.dropdownListBorder": "#768892", 496 | "settings.focusedRowBackground": "#19262c", 497 | "settings.focusedRowBorder": "#19262c", 498 | "settings.headerBorder": "#76889277", 499 | "settings.headerForeground": "#768892", 500 | "settings.modifiedItemIndicator": "#768892", 501 | "settings.numberInputBackground": "#19262c", 502 | "settings.numberInputBorder": "#76889277", 503 | "settings.numberInputForeground": "#768892", 504 | "settings.rowHoverBackground": "#19262c", 505 | "settings.sashBorder": "#76889277", 506 | "settings.settingsHeaderHoverForeground": "#6d92a7", 507 | "settings.textInputBackground": "#19262c", 508 | "settings.textInputBorder": "#76889277", 509 | "settings.textInputForeground": "#768892", 510 | "sideBar.background": "#19262c", 511 | "sideBar.border": "#637d8b73", 512 | "sideBar.dropBackground": "#00578648", 513 | "sideBar.foreground": "#637d8b", 514 | "sideBarActivityBarTop.border": "#637d8b73", 515 | "sideBarSectionHeader.background": "#141c20", 516 | "sideBarSectionHeader.border": "#637d8b73", 517 | "sideBarSectionHeader.foreground": "#55636e", 518 | "sideBarStickyScroll.background": "#19262c", 519 | "sideBarStickyScroll.border": "#637d8b73", 520 | "sideBarStickyScroll.shadow": "#8e8e8e61", 521 | "sideBarTitle.background": "#19262c", 522 | "sideBarTitle.foreground": "#929291c8", 523 | "sideBySideEditor.horizontalBorder": "#bbbcaf", 524 | "sideBySideEditor.verticalBorder": "#bbbcaf", 525 | "statusBar.background": "#141c20", 526 | "statusBar.border": "#637d8b73", 527 | "statusBar.debuggingBackground": "#141c20", 528 | "statusBar.debuggingBorder": "#4ca4509f", 529 | "statusBar.debuggingForeground": "#4ca4509f", 530 | "statusBar.focusBorder": "#637d8b73", 531 | "statusBar.foreground": "#637d8b73", 532 | "statusBar.noFolderBackground": "#141c20", 533 | "statusBar.noFolderBorder": "#353c3f73", 534 | "statusBar.noFolderForeground": "#637d8b73", 535 | "statusBarItem.activeBackground": "#141c20", 536 | "statusBarItem.errorBackground": "#141c20", 537 | "statusBarItem.errorForeground": "#603030", 538 | "statusBarItem.focusBorder": "#637d8b73", 539 | "statusBarItem.hoverBackground": "#141c20", 540 | "statusBarItem.hoverForeground": "#637d8b", 541 | "statusBarItem.offlineBackground": "#141c20", 542 | "statusBarItem.offlineForeground": "#637d8b73", 543 | "statusBarItem.offlineHoverBackground": "#141c20", 544 | "statusBarItem.offlineHoverForeground": "#637d8b", 545 | "statusBarItem.prominentBackground": "#141c20", 546 | "statusBarItem.prominentForeground": "#637d8b73", 547 | "statusBarItem.prominentHoverBackground": "#141c20", 548 | "statusBarItem.prominentHoverForeground": "#637d8b", 549 | "statusBarItem.remoteBackground": "#141c20", 550 | "statusBarItem.remoteForeground": "#637d8b73", 551 | "statusBarItem.remoteHoverBackground": "#141c20", 552 | "statusBarItem.remoteHoverForeground": "#637d8b", 553 | "statusBarItem.warningBackground": "#141c20", 554 | "statusBarItem.warningForeground": "#725102", 555 | "symbolIcon.arrayForeground": "#5f64a5", 556 | "symbolIcon.booleanForeground": "#637d8b", 557 | "symbolIcon.classForeground": "#928e11", 558 | "symbolIcon.colorForeground": "#637d8b", 559 | "symbolIcon.constantForeground": "#5f64a5", 560 | "symbolIcon.constructorForeground": "#5f64a5", 561 | "symbolIcon.enumeratorForeground": "#5f64a5", 562 | "symbolIcon.enumeratorMemberForeground": "#5f64a5", 563 | "symbolIcon.eventForeground": "#5f64a5", 564 | "symbolIcon.fieldForeground": "#637d8b", 565 | "symbolIcon.fileForeground": "#637d8b", 566 | "symbolIcon.folderForeground": "#637d8b", 567 | "symbolIcon.functionForeground": "#896605", 568 | "symbolIcon.interfaceForeground": "#928e11", 569 | "symbolIcon.keyForeground": "#637d8b", 570 | "symbolIcon.keywordForeground": "#637d8b", 571 | "symbolIcon.methodForeground": "#896605", 572 | "symbolIcon.moduleForeground": "#896605", 573 | "symbolIcon.namespaceForeground": "#928e11", 574 | "symbolIcon.nullForeground": "#637d8b", 575 | "symbolIcon.numberForeground": "#637d8b", 576 | "symbolIcon.objectForeground": "#896605", 577 | "symbolIcon.operatorForeground": "#637d8b", 578 | "symbolIcon.packageForeground": "#928e11", 579 | "symbolIcon.propertyForeground": "#46535e9b", 580 | "symbolIcon.referenceForeground": "#896605", 581 | "symbolIcon.snippetForeground": "#896605", 582 | "symbolIcon.stringForeground": "#637d8b", 583 | "symbolIcon.structForeground": "#5f64a5", 584 | "symbolIcon.textForeground": "#637d8b", 585 | "symbolIcon.typeParameterForeground": "#637d8b", 586 | "symbolIcon.unitForeground": "#637d8b", 587 | "symbolIcon.variableForeground": "#637d8b", 588 | "tab.activeBackground": "#19262c", 589 | "tab.activeBorder": "#19262c", 590 | "tab.activeBorderTop": "#19262c", 591 | "tab.activeForeground": "#637d8b", 592 | "tab.border": "#637d8b73", 593 | "tab.dragAndDropBorder": "#637d8b73", 594 | "tab.hoverBackground": "#19262c", 595 | "tab.hoverBorder": "#637d8b73", 596 | "tab.hoverForeground": "#6d92a7", 597 | "tab.inactiveBackground": "#19262c", 598 | "tab.inactiveForeground": "#637d8b", 599 | "tab.lastPinnedBorder": "#637d8b73", 600 | "tab.selectedBackground": "#222222", 601 | "tab.selectedBorderTop": "#6caddf", 602 | "tab.selectedForeground": "#ffffffa0", 603 | "tab.unfocusedActiveBackground": "#19262c", 604 | "tab.unfocusedActiveBorder": "#19262c", 605 | "tab.unfocusedActiveBorderTop": "#19262c", 606 | "tab.unfocusedActiveForeground": "#637d8b", 607 | "tab.unfocusedHoverBackground": "#19262c", 608 | "tab.unfocusedInactiveBackground": "#19262c", 609 | "tab.unfocusedInactiveForeground": "#637d8b", 610 | "terminal.ansiBlack": "#000000", 611 | "terminal.ansiBlue": "#0123ad", 612 | "terminal.ansiBrightBlack": "#555555", 613 | "terminal.ansiBrightBlue": "#0123ad", 614 | "terminal.ansiBrightCyan": "#008080", 615 | "terminal.ansiBrightGreen": "#215d21", 616 | "terminal.ansiBrightMagenta": "#7b397b", 617 | "terminal.ansiBrightRed": "#800000", 618 | "terminal.ansiBrightWhite": "#c0c0c0", 619 | "terminal.ansiBrightYellow": "#7b7b28", 620 | "terminal.ansiCyan": "#008080", 621 | "terminal.ansiGreen": "#215d21", 622 | "terminal.ansiMagenta": "#7b397b", 623 | "terminal.ansiRed": "#800000", 624 | "terminal.ansiWhite": "#c0c0c0", 625 | "terminal.ansiYellow": "#7b7b28", 626 | "terminal.background": "#10171b", 627 | "terminal.border": "#637d8b6e", 628 | "terminal.dropBackground": "#00578648", 629 | "terminal.findMatchBackground": "#0f2d3dc7", 630 | "terminal.findMatchBorder": "#577c8fc7", 631 | "terminal.findMatchHighlightBackground": "#0f2d3dc7", 632 | "terminal.findMatchHighlightBorder": "#0f2d3dc7", 633 | "terminal.foreground": "#1e5f8252", 634 | "terminal.hoverHighlightBackground": "#577c8fc7", 635 | "terminal.inactiveSelectionBackground": "#143d5a94", 636 | "terminal.initialHintForeground": "#1e5f8252", 637 | "terminal.selectionBackground": "#143d5a94", 638 | "terminal.selectionForeground": "#637d8b", 639 | "terminal.tab.activeBorder": "#2a6dca00", 640 | "terminalCommandDecoration.defaultBackground": "#1e5f82", 641 | "terminalCommandDecoration.errorBackground": "#603030", 642 | "terminalCommandDecoration.successBackground": "#0d3c00", 643 | "terminalCommandGuide.foreground": "#1e5f8252", 644 | "terminalCursor.background": "#0004ff", 645 | "terminalCursor.foreground": "#577c8fc7", 646 | "terminalOverviewRuler.border": "#182329", 647 | "terminalStickyScroll.background": "#141c20", 648 | "terminalStickyScroll.border": "#1d282e", 649 | "terminalStickyScrollHover.background": "#162023", 650 | "testing.iconErrored": "#ff0000", 651 | "testing.iconFailed": "#a84444", 652 | "testing.iconPassed": "#2ba85b", 653 | "testing.iconQueued": "#258bd3", 654 | "testing.iconSkipped": "#258bd3", 655 | "testing.iconUnset": "#258bd3", 656 | "testing.peekBorder": "#af4c4c", 657 | "testing.peekHeaderBackground": "#30221d", 658 | "testing.runAction": "#258bd3", 659 | "textBlockQuote.background": "#24292e", 660 | "textBlockQuote.border": "#444d56", 661 | "textCodeBlock.background": "#2f363d", 662 | "textLink.activeForeground": "#7895af", 663 | "textLink.foreground": "#546d80", 664 | "textPreformat.background": "#6b717e54", 665 | "textPreformat.foreground": "#7895af", 666 | "textSeparator.foreground": "#21262d", 667 | "titleBar.activeBackground": "#141c20", 668 | "titleBar.activeForeground": "#637d8b", 669 | "titleBar.border": "#637d8b73", 670 | "titleBar.inactiveBackground": "#141c20", 671 | "titleBar.inactiveForeground": "#637d8b", 672 | "toolbar.activeBackground": "#141c20", 673 | "toolbar.hoverBackground": "#141c20", 674 | "toolbar.hoverOutline": "#637d8b73", 675 | "tree.inactiveIndentGuidesStroke": "#637d8b73", 676 | "tree.indentGuidesStroke": "#637d8b73", 677 | "tree.tableColumnsBorder": "#637d8b6e", 678 | "tree.tableOddRowsBackground": "#637d8b6e", 679 | "walkThrough.embeddedEditorBackground": "#19262c", 680 | "walkthrough.stepTitle.foreground": "#19262c", 681 | "welcomePage.background": "#141c20", 682 | "welcomePage.progress.background": "#637d8b", 683 | "welcomePage.progress.foreground": "#145d85", 684 | "welcomePage.tileBackground": "#19262c", 685 | "welcomePage.tileBorder": "#19262c", 686 | "welcomePage.tileHoverBackground": "#25363e", 687 | "widget.border": "#637d8b", 688 | //"chart.axis": "#bfbfbf66", 689 | //"chart.guide": "#bfbfbf33", 690 | //"chart.line": "#236b8e", 691 | //"charts.blue": "#007bff4c", 692 | //"charts.foreground": "#637d8b", 693 | //"charts.green": "#89d185", 694 | //"charts.lines": "#637d8b80", 695 | //"charts.orange": "#0c5e8773", 696 | //"charts.purple": "#b180d7", 697 | //"charts.red": "#673737", 698 | //"charts.yellow": "#97804c8e", 699 | //"chat.avatarBackground": "#1f1f1f", 700 | //"chat.avatarForeground": "#637d8b", 701 | //"chat.requestBackground": "#141c209e", 702 | //"chat.requestBorder": "#ffffff1a", 703 | //"commandCenter.border": "#637d8b33", 704 | //"commentsView.resolvedIcon": "#4c7f8f", 705 | //"commentsView.unresolvedIcon": "#949191", 706 | //"debugTokenExpression.type": "#4a90e2", 707 | //"debugView.exceptionLabelBackground": "#6c2022", 708 | //"debugView.exceptionLabelForeground": "#637d8b", 709 | //"debugView.stateLabelBackground": "#88888844", 710 | //"debugView.stateLabelForeground": "#637d8b", 711 | //"editor.compositionBorder": "#ffffff", 712 | //"editor.inlineValuesBackground": "#ffc80033", 713 | //"editor.inlineValuesForeground": "#ffffff80", 714 | //"editor.placeholder.foreground": "#ffffff1b", 715 | //"editorActionList.background": "#222e35", 716 | //"editorActionList.focusBackground": "#003e5f77", 717 | //"editorActionList.focusForeground": "#637d8b", 718 | //"editorActionList.foreground": "#637d8b", 719 | //"editorGutter.commentGlyphForeground": "#295978", 720 | //"editorGutter.commentRangeForeground": "#0a2b3d", 721 | //"editorGutter.commentUnresolvedGlyphForeground": "#295978", 722 | //"editorGutter.itemBackground": "#0a2b3d", 723 | //"editorGutter.itemGlyphForeground": "#295978", 724 | //"editorMinimap.inlineChatInserted": "#69ff440c", 725 | //"editorMultiCursor.primary.background": "#1b2125", 726 | //"editorMultiCursor.primary.foreground": "#627e92", 727 | //"editorMultiCursor.secondary.background": "#1b2125", 728 | //"editorMultiCursor.secondary.foreground": "#627e92", 729 | //"editorOverviewRuler.bracketMatchForeground": "#a0a0a0", 730 | //"editorOverviewRuler.commentForeground": "#0a2b3d", 731 | //"editorOverviewRuler.commentUnresolvedForeground": "#0a2b3d", 732 | //"editorOverviewRuler.commonContentForeground": "#60606066", 733 | //"editorOverviewRuler.inlineChatInserted": "#69ff440c", 734 | //"editorOverviewRuler.inlineChatRemoved": "#db4e4e14", 735 | //"editorOverviewRuler.rangeHighlightForeground": "#007acc99", 736 | //"editorOverviewRuler.wordHighlightForeground": "#a0a0a0cc", 737 | //"editorOverviewRuler.wordHighlightStrongForeground": "#c0a0c0cc", 738 | //"editorOverviewRuler.wordHighlightTextForeground": "#034264c9", 739 | //"editorSuggestWidgetStatus.foreground": "#9bc7ce28", 740 | //"editorUnicodeHighlight.background": "#97804c00", 741 | //"editorUnicodeHighlight.border": "#97804c8e", 742 | //"extensionBadge.remoteBackground": "#00456a", 743 | //"extensionBadge.remoteForeground": "#7796a7", 744 | //"extensionButton.prominentHoverBackground": "#2e404984", 745 | //"extensionIcon.privateForeground": "#ffffff60", 746 | //"gauge.background": "#6b97ca", 747 | //"gauge.errorBackground": "#ca6b6b", 748 | //"gauge.errorForeground": "#ca6b6b4d", 749 | //"gauge.foreground": "#6b97ca4d", 750 | //"gauge.warningBackground": "#978450", 751 | //"gauge.warningForeground": "#9784504d", 752 | //"git.blame.editorDecorationForeground": "#8ccfff29", 753 | //"gitlens.closedAutolinkedIssueIconColor": "#a371f7", 754 | //"gitlens.closedPullRequestIconColor": "#f85149", 755 | //"gitlens.decorations.addedForegroundColor": "#4ca450", 756 | //"gitlens.decorations.branchAheadForegroundColor": "#35b15e", 757 | //"gitlens.decorations.branchBehindForegroundColor": "#b15e35", 758 | //"gitlens.decorations.branchDivergedForegroundColor": "#d8af1b", 759 | //"gitlens.decorations.branchMissingUpstreamForegroundColor": "#c74e39", 760 | //"gitlens.decorations.branchUnpublishedForegroundColor": "#637d8b", 761 | //"gitlens.decorations.branchUpToDateForegroundColor": "#637d8b", 762 | //"gitlens.decorations.copiedForegroundColor": "#ffcb3c7a", 763 | //"gitlens.decorations.deletedForegroundColor": "#9b1818", 764 | //"gitlens.decorations.ignoredForegroundColor": "#637d8b73", 765 | //"gitlens.decorations.modifiedForegroundColor": "#ffcb3c7a", 766 | //"gitlens.decorations.renamedForegroundColor": "#ffcb3c7a", 767 | //"gitlens.decorations.statusMergingOrRebasingConflictForegroundColor": "#c74e39", 768 | //"gitlens.decorations.statusMergingOrRebasingForegroundColor": "#d8af1b", 769 | //"gitlens.decorations.untrackedForegroundColor": "#4e8a53", 770 | //"gitlens.decorations.workspaceCurrentForegroundColor": "#35b15e", 771 | //"gitlens.decorations.workspaceRepoMissingForegroundColor": "#909090", 772 | //"gitlens.decorations.workspaceRepoOpenForegroundColor": "#35b15e", 773 | //"gitlens.decorations.worktreeHasUncommittedChangesForegroundColor": "#e2c08d", 774 | //"gitlens.decorations.worktreeMissingForegroundColor": "#c74e39", 775 | //"gitlens.graphChangesColumnAddedColor": "#347d39", 776 | //"gitlens.graphChangesColumnDeletedColor": "#c93c37", 777 | //"gitlens.graphLane10Color": "#2ece9d", 778 | //"gitlens.graphLane1Color": "#15a0bf", 779 | //"gitlens.graphLane2Color": "#0669f7", 780 | //"gitlens.graphLane3Color": "#8e00c2", 781 | //"gitlens.graphLane4Color": "#c517b6", 782 | //"gitlens.graphLane5Color": "#d90171", 783 | //"gitlens.graphLane6Color": "#cd0101", 784 | //"gitlens.graphLane7Color": "#f25d2e", 785 | //"gitlens.graphLane8Color": "#f2ca33", 786 | //"gitlens.graphLane9Color": "#7bd938", 787 | //"gitlens.graphMinimapMarkerHeadColor": "#05e617", 788 | //"gitlens.graphMinimapMarkerHighlightsColor": "#fbff0a", 789 | //"gitlens.graphMinimapMarkerLocalBranchesColor": "#3087cf", 790 | //"gitlens.graphMinimapMarkerPullRequestsColor": "#c76801", 791 | //"gitlens.graphMinimapMarkerRemoteBranchesColor": "#2b5e88", 792 | //"gitlens.graphMinimapMarkerStashesColor": "#b34db3", 793 | //"gitlens.graphMinimapMarkerTagsColor": "#6b562e", 794 | //"gitlens.graphMinimapMarkerUpstreamColor": "#09ae17", 795 | //"gitlens.graphScrollMarkerHeadColor": "#05e617", 796 | //"gitlens.graphScrollMarkerHighlightsColor": "#fbff0a", 797 | //"gitlens.graphScrollMarkerLocalBranchesColor": "#3087cf", 798 | //"gitlens.graphScrollMarkerPullRequestsColor": "#c76801", 799 | //"gitlens.graphScrollMarkerRemoteBranchesColor": "#2b5e88", 800 | //"gitlens.graphScrollMarkerStashesColor": "#b34db3", 801 | //"gitlens.graphScrollMarkerTagsColor": "#6b562e", 802 | //"gitlens.graphScrollMarkerUpstreamColor": "#09ae17", 803 | //"gitlens.gutterBackgroundColor": "#ffffff13", 804 | //"gitlens.gutterForegroundColor": "#bebebe", 805 | //"gitlens.gutterUncommittedForegroundColor": "#00bcf299", 806 | //"gitlens.launchpadIndicatorAttentionColor": "#d8af1b", 807 | //"gitlens.launchpadIndicatorAttentionHoverColor": "#d8af1b", 808 | //"gitlens.launchpadIndicatorBlockedColor": "#c74e39", 809 | //"gitlens.launchpadIndicatorBlockedHoverColor": "#c74e39", 810 | //"gitlens.launchpadIndicatorMergeableColor": "#3fb950", 811 | //"gitlens.launchpadIndicatorMergeableHoverColor": "#3fb950", 812 | //"gitlens.lineHighlightBackgroundColor": "#00bcf233", 813 | //"gitlens.lineHighlightOverviewRulerColor": "#00bcf299", 814 | //"gitlens.mergedPullRequestIconColor": "#a371f7", 815 | //"gitlens.openAutolinkedIssueIconColor": "#3fb950", 816 | //"gitlens.openPullRequestIconColor": "#3fb950", 817 | //"gitlens.trailingLineBackgroundColor": "#00000000", 818 | //"gitlens.trailingLineForegroundColor": "#99999959", 819 | //"gitlens.unpublishedChangesIconColor": "#35b15e", 820 | //"gitlens.unpublishedCommitIconColor": "#35b15e", 821 | //"gitlens.unpulledChangesIconColor": "#b15e35", 822 | //"inlineChat.background": "#222e35", 823 | //"inlineChat.border": "#637d8b", 824 | //"inlineChat.foreground": "#637d8b", 825 | //"inlineChat.shadow": "#0000005c", 826 | //"inlineChatDiff.inserted": "#69ff440a", 827 | //"inlineChatDiff.removed": "#db4e4e11", 828 | //"inlineChatInput.background": "#19262c", 829 | //"inlineChatInput.border": "#637d8b", 830 | //"inlineChatInput.focusBorder": "#43545e", 831 | //"inlineChatInput.placeholderForeground": "#637d8b8a", 832 | //"inlineEdit.gutterIndicator.background": "#19262c80", 833 | //"inlineEdit.gutterIndicator.primaryBackground": "#19262c66", 834 | //"inlineEdit.gutterIndicator.primaryBorder": "#19262c", 835 | //"inlineEdit.gutterIndicator.primaryForeground": "#768892", 836 | //"inlineEdit.gutterIndicator.secondaryBackground": "#19262c", 837 | //"inlineEdit.gutterIndicator.secondaryBorder": "#19262c", 838 | //"inlineEdit.gutterIndicator.secondaryForeground": "#768892", 839 | //"inlineEdit.gutterIndicator.successfulBackground": "#19262c", 840 | //"inlineEdit.gutterIndicator.successfulBorder": "#19262c", 841 | //"inlineEdit.gutterIndicator.successfulForeground": "#768892", 842 | //"inlineEdit.modifiedBackground": "#69ff4406", 843 | //"inlineEdit.modifiedBorder": "#69ff4415", 844 | //"inlineEdit.modifiedChangedLineBackground": "#69ff4400", 845 | //"inlineEdit.modifiedChangedTextBackground": "#69ff440f", 846 | //"inlineEdit.originalBackground": "#db4e4e07", 847 | //"inlineEdit.originalBorder": "#db4e4e21", 848 | //"inlineEdit.originalChangedLineBackground": "#db4e4e1a", 849 | //"inlineEdit.originalChangedTextBackground": "#db4e4e1a", 850 | //"inlineEdit.tabWillAcceptModifiedBorder": "#69ff4415", 851 | //"inlineEdit.tabWillAcceptOriginalBorder": "#db4e4e21", 852 | //"interactive.activeCodeBorder": "#45565e", 853 | //"interactive.inactiveCodeBorder": "#003e5f77", 854 | //"issues.closed": "#cb2431", 855 | //"issues.newIssueDecoration": "#ffffff48", 856 | //"issues.open": "#3fb950", 857 | //"list.deemphasizedForeground": "#8c8c8c", 858 | //"list.dropBetweenBackground": "#637d8b", 859 | //"merge.commonContentBackground": "#60606029", 860 | //"merge.commonHeaderBackground": "#60606066", 861 | //"mergeEditor.conflict.input1.background": "#5c2a2113", 862 | //"mergeEditor.conflict.input2.background": "#5c2a2113", 863 | //"mergeEditor.conflictingLines.background": "#ffea0047", 864 | //"minimap.chatEditHighlight": "#141c2099", 865 | //"multiDiffEditor.border": "#637d8b73", 866 | //"notebook.cellInsertionIndicator": "#43545e", 867 | //"notebook.selectedCellBackground": "#003e5f77", 868 | //"notebook.selectedCellBorder": "#637d8b73", 869 | //"notebook.symbolHighlightBackground": "#ffffff0b", 870 | //"panelStickyScroll.background": "#10171b", 871 | //"panelStickyScroll.shadow": "#5a61616c", 872 | //"panelTitleBadge.background": "#00456a", 873 | //"panelTitleBadge.foreground": "#7796a7", 874 | //"pullRequests.closed": "#cb2431", 875 | //"pullRequests.draft": "#6e7681", 876 | //"pullRequests.merged": "#8957e5", 877 | //"pullRequests.notification": "#54629f", 878 | //"pullRequests.open": "#3fb950", 879 | //"radio.activeBackground": "#19262c", 880 | //"radio.activeBorder": "#637d8b", 881 | //"radio.activeForeground": "#637d8b", 882 | //"radio.inactiveBorder": "#637d8b33", 883 | //"radio.inactiveHoverBackground": "#247eaf4d", 884 | //"simpleFindWidget.sashBorder": "#454545", 885 | //"statusBarItem.compactHoverBackground": "#ffffff33", 886 | //"statusBarItem.errorHoverBackground": "#141c20", 887 | //"statusBarItem.errorHoverForeground": "#637d8b", 888 | //"statusBarItem.warningHoverBackground": "#141c20", 889 | //"statusBarItem.warningHoverForeground": "#637d8b", 890 | //"tab.activeModifiedBorder": "#3399cc", 891 | //"tab.inactiveModifiedBorder": "#3399cc80", 892 | //"tab.unfocusedActiveModifiedBorder": "#3399cc80", 893 | //"tab.unfocusedHoverBorder": "#637d8b3a", 894 | //"tab.unfocusedHoverForeground": "#6d92a780", 895 | //"tab.unfocusedInactiveModifiedBorder": "#3399cc40", 896 | //"terminalOverviewRuler.cursorForeground": "#a0a0a0cc", 897 | //"terminalOverviewRuler.findMatchForeground": "#92abd43e", 898 | //"terminalSymbolIcon.aliasForeground": "#896605", 899 | //"terminalSymbolIcon.argumentForeground": "#637d8b", 900 | //"terminalSymbolIcon.fileForeground": "#637d8b", 901 | //"terminalSymbolIcon.flagForeground": "#5f64a5", 902 | //"terminalSymbolIcon.folderForeground": "#637d8b", 903 | //"terminalSymbolIcon.methodForeground": "#896605", 904 | //"terminalSymbolIcon.optionForeground": "#5f64a5", 905 | //"terminalSymbolIcon.optionValueForeground": "#5f64a5", 906 | //"testing.coverCountBadgeBackground": "#2b495a", 907 | //"testing.coverCountBadgeForeground": "#6b97ca", 908 | //"testing.coveredBackground": "#69ff4415", 909 | //"testing.coveredBorder": "#69ff4410", 910 | //"testing.coveredGutterBackground": "#69ff440c", 911 | //"testing.iconErrored.retired": "#ff0000b3", 912 | //"testing.iconFailed.retired": "#a84444b3", 913 | //"testing.iconPassed.retired": "#2ba85bb3", 914 | //"testing.iconQueued.retired": "#258bd3b3", 915 | //"testing.iconSkipped.retired": "#258bd3b3", 916 | //"testing.iconUnset.retired": "#258bd3b3", 917 | //"testing.message.error.badgeBackground": "#57130a", 918 | //"testing.message.error.badgeBorder": "#57130a", 919 | //"testing.message.error.badgeForeground": "#a45555", 920 | //"testing.message.info.decorationForeground": "#29597880", 921 | //"testing.messagePeekBorder": "#007bff4c", 922 | //"testing.messagePeekHeaderBackground": "#007bff08", 923 | //"testing.uncoveredBackground": "#db4e4e21", 924 | //"testing.uncoveredBorder": "#db4e4e19", 925 | //"testing.uncoveredBranchBackground": "#47282b", 926 | //"testing.uncoveredGutterBackground": "#db4e4e31", 927 | //"widget.shadow": "#0000005c", 928 | //"contrastActiveBorder": null, 929 | //"contrastBorder": null, 930 | //"editor.selectionForeground": null, 931 | //"editorGhostText.background": null, 932 | //"editorGhostText.border": null, 933 | //"gauge.border": null, 934 | //"notebook.focusedCellBackground": null, 935 | //"outputView.background": null, 936 | //"outputViewStickyScroll.background": null, 937 | //"panelStickyScroll.border": null, 938 | //"panelTitle.border": null, 939 | //"radio.inactiveBackground": null, 940 | //"radio.inactiveForeground": null, 941 | //"sideBarTitle.border": null, 942 | //"terminalSymbolIcon.inlineSuggestionForeground": null, 943 | //"testing.message.error.lineBackground": null, 944 | //"testing.message.info.lineBackground": null, 945 | //"window.activeBorder": null, 946 | //"window.inactiveBorder": null 947 | }, 948 | "tokenColors": [ 949 | { 950 | "scope": [ 951 | "meta.embedded", 952 | "source.groovy.embedded", 953 | "string meta.image.inline.markdown", 954 | "variable.legacy.builtin.python" 955 | ], 956 | "settings": { 957 | "foreground": "#D4D4D4" 958 | } 959 | }, 960 | { 961 | "scope": "emphasis", 962 | "settings": { 963 | "fontStyle": "italic" 964 | } 965 | }, 966 | { 967 | "scope": "strong", 968 | "settings": { 969 | "fontStyle": "bold" 970 | } 971 | }, 972 | { 973 | "scope": "header", 974 | "settings": { 975 | "foreground": "#000080" 976 | } 977 | }, 978 | { 979 | "scope": "comment", 980 | "settings": { 981 | "foreground": "#6A9955" 982 | } 983 | }, 984 | { 985 | "scope": "constant.language", 986 | "settings": { 987 | "foreground": "#569CD6" 988 | } 989 | }, 990 | { 991 | "scope": [ 992 | "constant.numeric", 993 | "variable.other.enummember", 994 | "keyword.operator.plus.exponent", 995 | "keyword.operator.minus.exponent" 996 | ], 997 | "settings": { 998 | "foreground": "#B5CEA8" 999 | } 1000 | }, 1001 | { 1002 | "scope": "constant.regexp", 1003 | "settings": { 1004 | "foreground": "#646695" 1005 | } 1006 | }, 1007 | { 1008 | "scope": "entity.name.tag", 1009 | "settings": { 1010 | "foreground": "#569CD6" 1011 | } 1012 | }, 1013 | { 1014 | "scope": [ 1015 | "entity.name.tag.css", 1016 | "entity.name.tag.less" 1017 | ], 1018 | "settings": { 1019 | "foreground": "#D7BA7D" 1020 | } 1021 | }, 1022 | { 1023 | "scope": "entity.other.attribute-name", 1024 | "settings": { 1025 | "foreground": "#9CDCFE" 1026 | } 1027 | }, 1028 | { 1029 | "scope": [ 1030 | "entity.other.attribute-name.class.css", 1031 | "source.css entity.other.attribute-name.class", 1032 | "entity.other.attribute-name.id.css", 1033 | "entity.other.attribute-name.parent-selector.css", 1034 | "entity.other.attribute-name.parent.less", 1035 | "source.css entity.other.attribute-name.pseudo-class", 1036 | "entity.other.attribute-name.pseudo-element.css", 1037 | "source.css.less entity.other.attribute-name.id", 1038 | "entity.other.attribute-name.scss" 1039 | ], 1040 | "settings": { 1041 | "foreground": "#D7BA7D" 1042 | } 1043 | }, 1044 | { 1045 | "scope": "invalid", 1046 | "settings": { 1047 | "foreground": "#F44747" 1048 | } 1049 | }, 1050 | { 1051 | "scope": "markup.underline", 1052 | "settings": { 1053 | "fontStyle": "underline" 1054 | } 1055 | }, 1056 | { 1057 | "scope": "markup.bold", 1058 | "settings": { 1059 | "foreground": "#569CD6", 1060 | "fontStyle": "bold" 1061 | } 1062 | }, 1063 | { 1064 | "scope": "markup.heading", 1065 | "settings": { 1066 | "foreground": "#569CD6", 1067 | "fontStyle": "bold" 1068 | } 1069 | }, 1070 | { 1071 | "scope": "markup.italic", 1072 | "settings": { 1073 | "fontStyle": "italic" 1074 | } 1075 | }, 1076 | { 1077 | "scope": "markup.strikethrough", 1078 | "settings": { 1079 | "fontStyle": "strikethrough" 1080 | } 1081 | }, 1082 | { 1083 | "scope": "markup.inserted", 1084 | "settings": { 1085 | "foreground": "#B5CEA8" 1086 | } 1087 | }, 1088 | { 1089 | "scope": "markup.deleted", 1090 | "settings": { 1091 | "foreground": "#CE9178" 1092 | } 1093 | }, 1094 | { 1095 | "scope": "markup.changed", 1096 | "settings": { 1097 | "foreground": "#569CD6" 1098 | } 1099 | }, 1100 | { 1101 | "scope": "punctuation.definition.quote.begin.markdown", 1102 | "settings": { 1103 | "foreground": "#6A9955" 1104 | } 1105 | }, 1106 | { 1107 | "scope": "punctuation.definition.list.begin.markdown", 1108 | "settings": { 1109 | "foreground": "#6796E6" 1110 | } 1111 | }, 1112 | { 1113 | "scope": "markup.inline.raw", 1114 | "settings": { 1115 | "foreground": "#CE9178" 1116 | } 1117 | }, 1118 | { 1119 | "scope": "punctuation.definition.tag", 1120 | "settings": { 1121 | "foreground": "#808080" 1122 | } 1123 | }, 1124 | { 1125 | "scope": [ 1126 | "meta.preprocessor", 1127 | "entity.name.function.preprocessor" 1128 | ], 1129 | "settings": { 1130 | "foreground": "#569CD6" 1131 | } 1132 | }, 1133 | { 1134 | "scope": "meta.preprocessor.string", 1135 | "settings": { 1136 | "foreground": "#CE9178" 1137 | } 1138 | }, 1139 | { 1140 | "scope": "meta.preprocessor.numeric", 1141 | "settings": { 1142 | "foreground": "#B5CEA8" 1143 | } 1144 | }, 1145 | { 1146 | "scope": "meta.structure.dictionary.key.python", 1147 | "settings": { 1148 | "foreground": "#9CDCFE" 1149 | } 1150 | }, 1151 | { 1152 | "scope": "meta.diff.header", 1153 | "settings": { 1154 | "foreground": "#569CD6" 1155 | } 1156 | }, 1157 | { 1158 | "scope": "storage", 1159 | "settings": { 1160 | "foreground": "#569CD6" 1161 | } 1162 | }, 1163 | { 1164 | "scope": "storage.type", 1165 | "settings": { 1166 | "foreground": "#569CD6" 1167 | } 1168 | }, 1169 | { 1170 | "scope": [ 1171 | "storage.modifier", 1172 | "keyword.operator.noexcept" 1173 | ], 1174 | "settings": { 1175 | "foreground": "#569CD6" 1176 | } 1177 | }, 1178 | { 1179 | "scope": [ 1180 | "string", 1181 | "meta.embedded.assembly" 1182 | ], 1183 | "settings": { 1184 | "foreground": "#CE9178" 1185 | } 1186 | }, 1187 | { 1188 | "scope": "string.tag", 1189 | "settings": { 1190 | "foreground": "#CE9178" 1191 | } 1192 | }, 1193 | { 1194 | "scope": "string.value", 1195 | "settings": { 1196 | "foreground": "#CE9178" 1197 | } 1198 | }, 1199 | { 1200 | "scope": "string.regexp", 1201 | "settings": { 1202 | "foreground": "#D16969" 1203 | } 1204 | }, 1205 | { 1206 | "scope": [ 1207 | "punctuation.definition.template-expression.begin", 1208 | "punctuation.definition.template-expression.end", 1209 | "punctuation.section.embedded" 1210 | ], 1211 | "settings": { 1212 | "foreground": "#569CD6" 1213 | } 1214 | }, 1215 | { 1216 | "scope": [ 1217 | "meta.template.expression" 1218 | ], 1219 | "settings": { 1220 | "foreground": "#D4D4D4" 1221 | } 1222 | }, 1223 | { 1224 | "scope": [ 1225 | "support.type.vendored.property-name", 1226 | "support.type.property-name", 1227 | "source.css variable", 1228 | "source.coffee.embedded" 1229 | ], 1230 | "settings": { 1231 | "foreground": "#9CDCFE" 1232 | } 1233 | }, 1234 | { 1235 | "scope": "keyword", 1236 | "settings": { 1237 | "foreground": "#569CD6" 1238 | } 1239 | }, 1240 | { 1241 | "scope": "keyword.control", 1242 | "settings": { 1243 | "foreground": "#569CD6" 1244 | } 1245 | }, 1246 | { 1247 | "scope": "keyword.operator", 1248 | "settings": { 1249 | "foreground": "#D4D4D4" 1250 | } 1251 | }, 1252 | { 1253 | "scope": [ 1254 | "keyword.operator.new", 1255 | "keyword.operator.expression", 1256 | "keyword.operator.cast", 1257 | "keyword.operator.sizeof", 1258 | "keyword.operator.alignof", 1259 | "keyword.operator.typeid", 1260 | "keyword.operator.alignas", 1261 | "keyword.operator.instanceof", 1262 | "keyword.operator.logical.python", 1263 | "keyword.operator.wordlike" 1264 | ], 1265 | "settings": { 1266 | "foreground": "#569CD6" 1267 | } 1268 | }, 1269 | { 1270 | "scope": "keyword.other.unit", 1271 | "settings": { 1272 | "foreground": "#B5CEA8" 1273 | } 1274 | }, 1275 | { 1276 | "scope": [ 1277 | "punctuation.section.embedded.begin.php", 1278 | "punctuation.section.embedded.end.php" 1279 | ], 1280 | "settings": { 1281 | "foreground": "#569CD6" 1282 | } 1283 | }, 1284 | { 1285 | "scope": "support.function.git-rebase", 1286 | "settings": { 1287 | "foreground": "#9CDCFE" 1288 | } 1289 | }, 1290 | { 1291 | "scope": "constant.sha.git-rebase", 1292 | "settings": { 1293 | "foreground": "#B5CEA8" 1294 | } 1295 | }, 1296 | { 1297 | "scope": [ 1298 | "storage.modifier.import.java", 1299 | "variable.language.wildcard.java", 1300 | "storage.modifier.package.java" 1301 | ], 1302 | "settings": { 1303 | "foreground": "#D4D4D4" 1304 | } 1305 | }, 1306 | { 1307 | "scope": "variable.language", 1308 | "settings": { 1309 | "foreground": "#569CD6" 1310 | } 1311 | }, 1312 | { 1313 | "scope": [ 1314 | "entity.name.function", 1315 | "support.function", 1316 | "support.constant.handlebars", 1317 | "source.powershell variable.other.member", 1318 | "entity.name.operator.custom-literal" 1319 | ], 1320 | "settings": { 1321 | "foreground": "#DCDCAA" 1322 | } 1323 | }, 1324 | { 1325 | "scope": [ 1326 | "support.class", 1327 | "support.type", 1328 | "entity.name.type", 1329 | "entity.name.namespace", 1330 | "entity.other.attribute", 1331 | "entity.name.scope-resolution", 1332 | "entity.name.class", 1333 | "storage.type.numeric.go", 1334 | "storage.type.byte.go", 1335 | "storage.type.boolean.go", 1336 | "storage.type.string.go", 1337 | "storage.type.uintptr.go", 1338 | "storage.type.error.go", 1339 | "storage.type.rune.go", 1340 | "storage.type.cs", 1341 | "storage.type.generic.cs", 1342 | "storage.type.modifier.cs", 1343 | "storage.type.variable.cs", 1344 | "storage.type.annotation.java", 1345 | "storage.type.generic.java", 1346 | "storage.type.java", 1347 | "storage.type.object.array.java", 1348 | "storage.type.primitive.array.java", 1349 | "storage.type.primitive.java", 1350 | "storage.type.token.java", 1351 | "storage.type.groovy", 1352 | "storage.type.annotation.groovy", 1353 | "storage.type.parameters.groovy", 1354 | "storage.type.generic.groovy", 1355 | "storage.type.object.array.groovy", 1356 | "storage.type.primitive.array.groovy", 1357 | "storage.type.primitive.groovy" 1358 | ], 1359 | "settings": { 1360 | "foreground": "#4EC9B0" 1361 | } 1362 | }, 1363 | { 1364 | "scope": [ 1365 | "meta.type.cast.expr", 1366 | "meta.type.new.expr", 1367 | "support.constant.math", 1368 | "support.constant.dom", 1369 | "support.constant.json", 1370 | "entity.other.inherited-class", 1371 | "punctuation.separator.namespace.ruby" 1372 | ], 1373 | "settings": { 1374 | "foreground": "#4EC9B0" 1375 | } 1376 | }, 1377 | { 1378 | "scope": [ 1379 | "keyword.control", 1380 | "source.cpp keyword.operator.new", 1381 | "keyword.operator.delete", 1382 | "keyword.other.using", 1383 | "keyword.other.directive.using", 1384 | "keyword.other.operator", 1385 | "entity.name.operator" 1386 | ], 1387 | "settings": { 1388 | "foreground": "#C586C0" 1389 | } 1390 | }, 1391 | { 1392 | "scope": [ 1393 | "variable", 1394 | "meta.definition.variable.name", 1395 | "support.variable", 1396 | "entity.name.variable", 1397 | "constant.other.placeholder" 1398 | ], 1399 | "settings": { 1400 | "foreground": "#9CDCFE" 1401 | } 1402 | }, 1403 | { 1404 | "scope": [ 1405 | "variable.other.constant", 1406 | "variable.other.enummember" 1407 | ], 1408 | "settings": { 1409 | "foreground": "#4FC1FF" 1410 | } 1411 | }, 1412 | { 1413 | "scope": [ 1414 | "meta.object-literal.key" 1415 | ], 1416 | "settings": { 1417 | "foreground": "#9CDCFE" 1418 | } 1419 | }, 1420 | { 1421 | "scope": [ 1422 | "support.constant.property-value", 1423 | "support.constant.font-name", 1424 | "support.constant.media-type", 1425 | "support.constant.media", 1426 | "constant.other.color.rgb-value", 1427 | "constant.other.rgb-value", 1428 | "support.constant.color" 1429 | ], 1430 | "settings": { 1431 | "foreground": "#CE9178" 1432 | } 1433 | }, 1434 | { 1435 | "scope": [ 1436 | "punctuation.definition.group.regexp", 1437 | "punctuation.definition.group.assertion.regexp", 1438 | "punctuation.definition.character-class.regexp", 1439 | "punctuation.character.set.begin.regexp", 1440 | "punctuation.character.set.end.regexp", 1441 | "keyword.operator.negation.regexp", 1442 | "support.other.parenthesis.regexp" 1443 | ], 1444 | "settings": { 1445 | "foreground": "#CE9178" 1446 | } 1447 | }, 1448 | { 1449 | "scope": [ 1450 | "constant.character.character-class.regexp", 1451 | "constant.other.character-class.set.regexp", 1452 | "constant.other.character-class.regexp", 1453 | "constant.character.set.regexp" 1454 | ], 1455 | "settings": { 1456 | "foreground": "#D16969" 1457 | } 1458 | }, 1459 | { 1460 | "scope": [ 1461 | "keyword.operator.or.regexp", 1462 | "keyword.control.anchor.regexp" 1463 | ], 1464 | "settings": { 1465 | "foreground": "#DCDCAA" 1466 | } 1467 | }, 1468 | { 1469 | "scope": "keyword.operator.quantifier.regexp", 1470 | "settings": { 1471 | "foreground": "#D7BA7D" 1472 | } 1473 | }, 1474 | { 1475 | "scope": [ 1476 | "constant.character", 1477 | "constant.other.option" 1478 | ], 1479 | "settings": { 1480 | "foreground": "#569CD6" 1481 | } 1482 | }, 1483 | { 1484 | "scope": "constant.character.escape", 1485 | "settings": { 1486 | "foreground": "#D7BA7D" 1487 | } 1488 | }, 1489 | { 1490 | "scope": "entity.name.label", 1491 | "settings": { 1492 | "foreground": "#C8C8C8" 1493 | } 1494 | }, 1495 | { 1496 | "scope": "comment", 1497 | "settings": { 1498 | "foreground": "#5C895C7D" 1499 | } 1500 | }, 1501 | { 1502 | "scope": "punctuation.definition.comment", 1503 | "settings": { 1504 | "foreground": "#5C895C7D" 1505 | } 1506 | }, 1507 | { 1508 | "scope": "string", 1509 | "settings": { 1510 | "foreground": "#295978" 1511 | } 1512 | }, 1513 | { 1514 | "scope": "meta.embedded.assembly", 1515 | "settings": { 1516 | "foreground": "#295978" 1517 | } 1518 | }, 1519 | { 1520 | "scope": "keyword - keyword.operator", 1521 | "settings": { 1522 | "foreground": "#714C43" 1523 | } 1524 | }, 1525 | { 1526 | "scope": "keyword.control", 1527 | "settings": { 1528 | "foreground": "#714C43" 1529 | } 1530 | }, 1531 | { 1532 | "scope": "storage", 1533 | "settings": { 1534 | "foreground": "#714C43" 1535 | } 1536 | }, 1537 | { 1538 | "scope": "storage.type", 1539 | "settings": { 1540 | "foreground": "#714C43" 1541 | } 1542 | }, 1543 | { 1544 | "scope": "constant.numeric", 1545 | "settings": { 1546 | "foreground": "#295978" 1547 | } 1548 | }, 1549 | { 1550 | "scope": "entity.name.type", 1551 | "settings": { 1552 | "foreground": "#2D658B" 1553 | } 1554 | }, 1555 | { 1556 | "scope": "entity.name.class", 1557 | "settings": { 1558 | "foreground": "#2D658B" 1559 | } 1560 | }, 1561 | { 1562 | "scope": "support.type", 1563 | "settings": { 1564 | "foreground": "#2D658B" 1565 | } 1566 | }, 1567 | { 1568 | "scope": "support.class", 1569 | "settings": { 1570 | "foreground": "#2D658B" 1571 | } 1572 | }, 1573 | { 1574 | "scope": "entity.name.function", 1575 | "settings": { 1576 | "foreground": "#474B7C" 1577 | } 1578 | }, 1579 | { 1580 | "scope": "support.function", 1581 | "settings": { 1582 | "foreground": "#474B7C" 1583 | } 1584 | }, 1585 | { 1586 | "scope": "variable", 1587 | "settings": { 1588 | "foreground": "#295978" 1589 | } 1590 | }, 1591 | { 1592 | "scope": "entity.name.variable", 1593 | "settings": { 1594 | "foreground": "#295978" 1595 | } 1596 | }, 1597 | { 1598 | "scope": [ 1599 | "keyword.operator", 1600 | "keyword.operator.expression", 1601 | "keyword.operator.new", 1602 | "constant.language", 1603 | "constant.numeric", 1604 | "storage.modifier", 1605 | "entity.other.attribute-name", 1606 | "entity.name.type", 1607 | "entity.name.function", 1608 | "entity.name.tag", 1609 | "variable.other.constant", 1610 | "variable.other.enummember", 1611 | "support.variable.property", 1612 | "support.function", 1613 | "support.class", 1614 | "support.variable" 1615 | ], 1616 | "settings": { 1617 | "foreground": "#295978" 1618 | } 1619 | }, 1620 | { 1621 | "scope": [ 1622 | "string.quoted.single" 1623 | ], 1624 | "settings": { 1625 | "foreground": "#A0C4A054" 1626 | } 1627 | }, 1628 | { 1629 | "scope": [ 1630 | "constant.numeric" 1631 | ], 1632 | "settings": { 1633 | "foreground": "#705F41" 1634 | } 1635 | }, 1636 | { 1637 | "scope": [ 1638 | "support.type.property-name" 1639 | ], 1640 | "settings": { 1641 | "foreground": "#295978" 1642 | } 1643 | }, 1644 | { 1645 | "scope": [ 1646 | "keyword.other" 1647 | ], 1648 | "settings": { 1649 | "foreground": "#714C43" 1650 | } 1651 | }, 1652 | { 1653 | "scope": [ 1654 | "punctuation.definition.string", 1655 | "storage.modifier.package", 1656 | "storage.modifier.import" 1657 | ], 1658 | "settings": { 1659 | "foreground": "#295978" 1660 | } 1661 | }, 1662 | { 1663 | "scope": [ 1664 | "source.bsl", 1665 | "punctuation.bracket.begin.bsl", 1666 | "punctuation.bracket.end.bsl" 1667 | ], 1668 | "settings": { 1669 | "foreground": "#295978" 1670 | } 1671 | }, 1672 | { 1673 | "scope": [ 1674 | "keyword.control.sdbl", 1675 | "support.function.sdbl", 1676 | "support.type.sdbl" 1677 | ], 1678 | "settings": { 1679 | "foreground": "#295978" 1680 | } 1681 | }, 1682 | { 1683 | "scope": [ 1684 | "constant.other.date.bsl" 1685 | ], 1686 | "settings": { 1687 | "foreground": "#705F41" 1688 | } 1689 | }, 1690 | { 1691 | "scope": [ 1692 | "constant.language.bsl", 1693 | "keyword.operator.logical.bsl" 1694 | ], 1695 | "settings": { 1696 | "foreground": "#714C43" 1697 | } 1698 | }, 1699 | { 1700 | "scope": [ 1701 | "keyword.other.preprocessor.bsl", 1702 | "keyword.other.section.bsl", 1703 | "keyword.control.import.bsl", 1704 | "keyword.control.native.bsl", 1705 | "storage.modifier.directive.bsl", 1706 | "storage.type.annotation.bsl", 1707 | "entity.name.section.bsl" 1708 | ], 1709 | "settings": { 1710 | "foreground": "#474B7C" 1711 | } 1712 | }, 1713 | { 1714 | "scope": [ 1715 | "source.sdbl", 1716 | "string.quoted.double.bsl", 1717 | "constant.character.escape.bsl", 1718 | "punctuation.definition.string.begin.bsl", 1719 | "punctuation.definition.string.end.bsl", 1720 | "constant.numeric.sdbl", 1721 | "constant.language.sdbl", 1722 | "string.quoted.double.sdbl", 1723 | "keyword.operator.sdbl", 1724 | "keyword.operator.logical.sdbl", 1725 | "keyword.operator.comparison.sdbl", 1726 | "keyword.control.conditional.sdbl", 1727 | "keyword.operator.arithmetic.sdbl", 1728 | "variable.parameter.sdbl" 1729 | ], 1730 | "settings": { 1731 | "foreground": "#64795AB8" 1732 | } 1733 | }, 1734 | { 1735 | "scope": [], 1736 | "settings": { 1737 | "foreground": "#2E902E" 1738 | } 1739 | }, 1740 | { 1741 | "scope": [ 1742 | "source.xbsl", 1743 | "storage.modifier.import", 1744 | "storage.type.xbsl", 1745 | "variable.parameter.method.xbsl" 1746 | ], 1747 | "settings": { 1748 | "foreground": "#3737AD" 1749 | } 1750 | }, 1751 | { 1752 | "scope": [ 1753 | "support.function.sql.xbsl" 1754 | ], 1755 | "settings": { 1756 | "foreground": "#092E61B7" 1757 | } 1758 | }, 1759 | { 1760 | "scope": [], 1761 | "settings": { 1762 | "foreground": "#484545" 1763 | } 1764 | }, 1765 | { 1766 | "scope": [ 1767 | "constant.language.xbsl", 1768 | "keyword.operator.logical.xbsl" 1769 | ], 1770 | "settings": { 1771 | "foreground": "#C30000" 1772 | } 1773 | }, 1774 | { 1775 | "scope": [ 1776 | "keyword.control.import.xbsl" 1777 | ], 1778 | "settings": { 1779 | "foreground": "#963200" 1780 | } 1781 | }, 1782 | { 1783 | "scope": [ 1784 | "keyword.control.less.xbsl", 1785 | "keyword.sql.xbsl", 1786 | "string.quoted.double.xbsl", 1787 | "string.other.query.xbsl", 1788 | "string.query.xbsl", 1789 | "constant.character.escape.xbsl", 1790 | "variable.parameter.xbsl" 1791 | ], 1792 | "settings": { 1793 | "foreground": "#4CA49C" 1794 | } 1795 | }, 1796 | { 1797 | "scope": [ 1798 | "punctuation.definition.string.begin.bsl", 1799 | "punctuation.definition.string.end.bsl" 1800 | ], 1801 | "settings": { 1802 | "foreground": "#64795AB8" 1803 | } 1804 | }, 1805 | { 1806 | "scope": [], 1807 | "settings": { 1808 | "foreground": "#2E902E" 1809 | } 1810 | }, 1811 | { 1812 | "scope": [ 1813 | "keyword.other.DML.II.sql", 1814 | "keyword.other.DML.sql", 1815 | "keyword.other.DDL.create.II.sql", 1816 | "keyword.other.LUW.sql", 1817 | "keyword.other.alias.sql", 1818 | "keyword.other.authorization.sql", 1819 | "keyword.other.cascade.sql", 1820 | "keyword.other.create.sql", 1821 | "keyword.other.data-integrity.sql", 1822 | "keyword.other.object-comments.sql", 1823 | "keyword.other.order.sql", 1824 | "keyword.other.table.sql", 1825 | "entity.name.function.sql" 1826 | ], 1827 | "settings": { 1828 | "foreground": "#714C43" 1829 | } 1830 | }, 1831 | { 1832 | "scope": [ 1833 | "string.interpolated.sql", 1834 | "string.other.quoted.brackets.sql", 1835 | "string.quoted.double.sql", 1836 | "string.quoted.other.backtick.sql", 1837 | "string.quoted.single.sql", 1838 | "string.regexp.modr.sql", 1839 | "string.regexp.sql" 1840 | ], 1841 | "settings": { 1842 | "foreground": "#295978" 1843 | } 1844 | }, 1845 | { 1846 | "scope": [ 1847 | "comment.block", 1848 | "comment.line.double-dash.sql" 1849 | ], 1850 | "settings": { 1851 | "foreground": "#5C895C7D" 1852 | } 1853 | }, 1854 | { 1855 | "scope": [ 1856 | "source.sql", 1857 | "keyword.operator.comparison.sql", 1858 | "keyword.operator.concatenator.sql", 1859 | "keyword.operator.math.sql", 1860 | "keyword.operator.star.sql", 1861 | "storage.modifier.sql", 1862 | "storage.type.sql", 1863 | "constant.character.escape.slash.sql", 1864 | "constant.character.escape.sql", 1865 | "constant.numeric.sql", 1866 | "constant.other.database-name.sql", 1867 | "constant.other.table-name.sql", 1868 | "keyword.other.sql" 1869 | ], 1870 | "settings": { 1871 | "foreground": "#295978" 1872 | } 1873 | }, 1874 | { 1875 | "scope": [ 1876 | "support.type.property-name.json", 1877 | "punctuation.separator.array.json", 1878 | "punctuation.separator.dictionary.pair.json.comments", 1879 | "punctuation.separator.dictionary.key-value.json.comments" 1880 | ], 1881 | "settings": { 1882 | "foreground": "#295978" 1883 | } 1884 | }, 1885 | { 1886 | "scope": [ 1887 | "string.quoted.double.json" 1888 | ], 1889 | "settings": { 1890 | "foreground": "#705F41" 1891 | } 1892 | }, 1893 | { 1894 | "scope": [ 1895 | "constant.language.json", 1896 | "constant.numeric.json" 1897 | ], 1898 | "settings": { 1899 | "foreground": "#FFCB3C7A" 1900 | } 1901 | }, 1902 | { 1903 | "scope": [ 1904 | "text.xml" 1905 | ], 1906 | "settings": { 1907 | "foreground": "#705F41" 1908 | } 1909 | }, 1910 | { 1911 | "scope": [ 1912 | "punctuation.definition.tag", 1913 | "entity.name.tag.localname.xml" 1914 | ], 1915 | "settings": { 1916 | "foreground": "#295978" 1917 | } 1918 | }, 1919 | { 1920 | "scope": [ 1921 | "meta.embedded" 1922 | ], 1923 | "settings": { 1924 | "foreground": "#637D8B" 1925 | } 1926 | }, 1927 | { 1928 | "scope": [ 1929 | "markup.heading" 1930 | ], 1931 | "settings": { 1932 | "foreground": "#316486" 1933 | } 1934 | }, 1935 | { 1936 | "scope": [ 1937 | "markup.inline.raw" 1938 | ], 1939 | "settings": { 1940 | "foreground": "#5C895C7D" 1941 | } 1942 | }, 1943 | { 1944 | "scope": [ 1945 | "markup.bold" 1946 | ], 1947 | "settings": { 1948 | "foreground": "#316486" 1949 | } 1950 | }, 1951 | { 1952 | "scope": [ 1953 | "keyword.language.gherkin.feature", 1954 | "keyword.language.gherkin.feature.scenario" 1955 | ], 1956 | "settings": { 1957 | "foreground": "#714C43" 1958 | } 1959 | }, 1960 | { 1961 | "scope": [ 1962 | "keyword.language.gherkin.feature.step" 1963 | ], 1964 | "settings": { 1965 | "foreground": "#714C43" 1966 | } 1967 | }, 1968 | { 1969 | "scope": [ 1970 | "keyword.control.cucumber.table" 1971 | ], 1972 | "settings": { 1973 | "foreground": "#5C895C7D" 1974 | } 1975 | }, 1976 | { 1977 | "scope": [ 1978 | "text.gherkin.feature" 1979 | ], 1980 | "settings": { 1981 | "foreground": "#295978" 1982 | } 1983 | }, 1984 | { 1985 | "scope": [ 1986 | "keyword.control.conditional.batchfile", 1987 | "keyword.other.special-method.batchfile", 1988 | "keyword.command.batchfile", 1989 | "keyword.operator.logical.batchfile" 1990 | ], 1991 | "settings": { 1992 | "foreground": "#714C43" 1993 | } 1994 | }, 1995 | { 1996 | "scope": [ 1997 | "comment.line.colon.batchfile", 1998 | "comment.line.rem.batchfile" 1999 | ], 2000 | "settings": { 2001 | "foreground": "#5C895C7D" 2002 | } 2003 | }, 2004 | { 2005 | "scope": [ 2006 | "source.batchfile", 2007 | "keyword.command.rem.batchfile", 2008 | "keyword.control.repeat.batchfile", 2009 | "keyword.control.repeat.do.batchfile", 2010 | "keyword.control.repeat.in.batchfile", 2011 | "keyword.control.statement.batchfile", 2012 | "keyword.operator.arithmetic.batchfile", 2013 | "keyword.operator.assignment.augmented.batchfile", 2014 | "keyword.operator.assignment.batchfile", 2015 | "keyword.operator.at.batchfile", 2016 | "keyword.operator.comparison.batchfile", 2017 | "keyword.operator.conditional.batchfile", 2018 | "keyword.operator.pipe.batchfile", 2019 | "keyword.operator.redirection.batchfile" 2020 | ], 2021 | "settings": { 2022 | "foreground": "#295978" 2023 | } 2024 | }, 2025 | { 2026 | "scope": [ 2027 | "source.shell" 2028 | ], 2029 | "settings": { 2030 | "foreground": "#295978" 2031 | } 2032 | }, 2033 | { 2034 | "scope": [ 2035 | "source.diff", 2036 | "meta.diff.header", 2037 | "markup.inserted.diff" 2038 | ], 2039 | "settings": { 2040 | "foreground": "#295978" 2041 | } 2042 | }, 2043 | { 2044 | "scope": "token.info-token", 2045 | "settings": { 2046 | "foreground": "#6796E6" 2047 | } 2048 | }, 2049 | { 2050 | "scope": "token.warn-token", 2051 | "settings": { 2052 | "foreground": "#CD9731" 2053 | } 2054 | }, 2055 | { 2056 | "scope": "token.error-token", 2057 | "settings": { 2058 | "foreground": "#F44747" 2059 | } 2060 | }, 2061 | { 2062 | "scope": "token.debug-token", 2063 | "settings": { 2064 | "foreground": "#B267E6" 2065 | } 2066 | } 2067 | ] 2068 | } -------------------------------------------------------------------------------- /themes/OneC-yellow-color-theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "vscode://schemas/color-theme", 3 | "type": "light", 4 | "colors": { 5 | "actionBar.toggledBackground": "#dddddd", 6 | "activityBar.activeBackground": "#fff8d2", 7 | "activityBar.activeBorder": "#fff8d2", 8 | "activityBar.activeFocusBorder": "#fff8d2", 9 | "activityBar.background": "#fbed9e", 10 | "activityBar.border": "#fbed9e", 11 | "activityBar.dropBorder": "#fbed9e", 12 | "activityBar.foreground": "#000000", 13 | "activityBar.inactiveForeground": "#8c8b8b", 14 | "activityBarBadge.background": "#7ea4e0", 15 | "activityBarBadge.foreground": "#f8f8f8", 16 | "activityBarTop.activeBackground": "#fff8d2", 17 | "activityBarTop.activeBorder": "#fff8d2", 18 | "activityBarTop.background": "#fbed9e", 19 | "activityBarTop.dropBorder": "#fbed9e", 20 | "activityBarTop.foreground": "#000000", 21 | "activityBarTop.inactiveForeground": "#8c8b8b", 22 | "activityErrorBadge.background": "#f8f8f8", 23 | "activityErrorBadge.foreground": "#e07e7e", 24 | "activityWarningBadge.background": "#f8f8f8", 25 | "activityWarningBadge.foreground": "#e0c47e", 26 | "badge.background": "#a1bdeb", 27 | "badge.foreground": "#f8f8f8", 28 | "banner.background": "#d0e8f8", 29 | "banner.foreground": "#494848", 30 | "banner.iconForeground": "#258bd3", 31 | "breadcrumb.activeSelectionForeground": "#258bd3", 32 | "breadcrumb.background": "#fffbf0", 33 | "breadcrumb.focusForeground": "#258bd3", 34 | "breadcrumb.foreground": "#949191", 35 | "breadcrumbPicker.background": "#f8f5f5", 36 | "button.background": "#a3cfff5a", 37 | "button.border": "#cfcdcd", 38 | "button.foreground": "#000000", 39 | "button.hoverBackground": "#a3cfff7b", 40 | "button.secondaryBackground": "#a3cfff5a", 41 | "button.secondaryForeground": "#000000", 42 | "button.secondaryHoverBackground": "#a3cfff7b", 43 | "button.separator": "#b7b5b5", 44 | "chat.editedFileForeground": "#895503", 45 | "chat.slashCommandBackground": "#d2ecff", 46 | "chat.slashCommandForeground": "#306ca2", 47 | "checkbox.background": "#f8f5f5", 48 | "checkbox.border": "#add9f8", 49 | "checkbox.foreground": "#464646", 50 | "checkbox.selectBackground": "#f8f5f5", 51 | "checkbox.selectBorder": "#464646", 52 | "commandCenter.activeBackground": "#e7e1e1", 53 | "commandCenter.activeBorder": "#8c8c90", 54 | "commandCenter.activeForeground": "#000000", 55 | "commandCenter.background": "#e7e1e1", 56 | "commandCenter.border": "#8c8c90", 57 | "commandCenter.debuggingBackground": "#c6eabf90", 58 | "commandCenter.foreground": "#000000", 59 | "commandCenter.inactiveBorder": "#8c8c90", 60 | "commandCenter.inactiveForeground": "#000000", 61 | "debugConsole.errorForeground": "#d83e3ee0", 62 | "debugConsole.infoForeground": "#5570b5", 63 | "debugConsole.sourceForeground": "#5570b5", 64 | "debugConsole.warningForeground": "#bf8803", 65 | "debugConsoleInputIcon.foreground": "#5570b5", 66 | "debugExceptionWidget.background": "#efebeb", 67 | "debugExceptionWidget.border": "#c30000", 68 | "debugIcon.breakpointCurrentStackframeForeground": "#25b801", 69 | "debugIcon.breakpointDisabledForeground": "#b6daae", 70 | "debugIcon.breakpointForeground": "#79c368", 71 | "debugIcon.breakpointStackframeForeground": "#25b801", 72 | "debugIcon.breakpointUnverifiedForeground": "#b6daae", 73 | "debugIcon.continueForeground": "#1d9100", 74 | "debugIcon.disconnectForeground": "#000000", 75 | "debugIcon.pauseForeground": "#bc8401", 76 | "debugIcon.restartForeground": "#bc8401", 77 | "debugIcon.startForeground": "#1d9100", 78 | "debugIcon.stepBackForeground": "#5570b5", 79 | "debugIcon.stepIntoForeground": "#5570b5", 80 | "debugIcon.stepOutForeground": "#5570b5", 81 | "debugIcon.stepOverForeground": "#5570b5", 82 | "debugIcon.stopForeground": "#000000", 83 | "debugTokenExpression.boolean": "#949191", 84 | "debugTokenExpression.error": "#ca2c2c", 85 | "debugTokenExpression.name": "#464646", 86 | "debugTokenExpression.number": "#949191", 87 | "debugTokenExpression.string": "#949191", 88 | "debugTokenExpression.type": "#949191", 89 | "debugTokenExpression.value": "#949191", 90 | "debugToolBar.background": "#c6eabf", 91 | "debugToolBar.border": "#add9f8", 92 | "debugView.exceptionLabelBackground": "#b8ebaa", 93 | "debugView.exceptionLabelForeground": "#3737ad", 94 | "debugView.stateLabelBackground": "#b8ebaa", 95 | "debugView.stateLabelForeground": "#3737ad", 96 | "debugView.valueChangedHighlight": "#add9f8", 97 | "descriptionForeground": "#949191", 98 | "diffEditor.border": "#ff000000", 99 | "diffEditor.diagonalFill": "#dbe3eb", 100 | "diffEditor.insertedLineBackground": "#1af8591c", 101 | "diffEditor.insertedTextBackground": "#baf4b7ee", 102 | "diffEditor.insertedTextBorder": "#baf4b7ee", 103 | "diffEditor.removedLineBackground": "#f456561b", 104 | "diffEditor.removedTextBackground": "#ea929246", 105 | "diffEditor.removedTextBorder": "#ea9292a4", 106 | "diffEditor.unchangedRegionBackground": "#f8f8f8", 107 | "diffEditorGutter.insertedLineBackground": "#1af85918", 108 | "diffEditorGutter.removedLineBackground": "#f456561b", 109 | "disabledForeground": "#ebe2e2", 110 | "dropdown.background": "#f9f6f6", 111 | "dropdown.border": "#cfcdcd", 112 | "dropdown.foreground": "#000000", 113 | "dropdown.listBackground": "#f9f6f6", 114 | "editor.background": "#fffbf0", 115 | "editor.findMatchBackground": "#d0e2f5", 116 | "editor.findMatchBorder": "#d0e2f5", 117 | "editor.findMatchHighlightBackground": "#d0e2f591", 118 | "editor.findMatchHighlightBorder": "#d0e2f591", 119 | "editor.findRangeHighlightBackground": "#d0e2f54e", 120 | "editor.findRangeHighlightBorder": "#d0e2f54e", 121 | "editor.focusedStackFrameHighlightBackground": "#49ff2525", 122 | "editor.foldBackground": "#d0f5db5b", 123 | "editor.foldPlaceholderForeground": "#4151b877", 124 | "editor.foreground": "#0664a7d0", 125 | "editor.hoverHighlightBackground": "#d0e2f5ad", 126 | "editor.inactiveSelectionBackground": "#d0e2f5ad", 127 | "editor.inlineValuesBackground": "#49ff2500", 128 | "editor.inlineValuesForeground": "#0000003c", 129 | "editor.lineHighlightBackground": "#e9f1f9ad", 130 | "editor.lineHighlightBorder": "#e9f1f9ad", 131 | "editor.linkedEditingBackground": "#98d18176", 132 | "editor.placeholder.foreground": "#cfcdcd", 133 | "editor.selectionBackground": "#d0e2f5", 134 | "editor.selectionHighlightBackground": "#d0e2f591", 135 | "editor.selectionHighlightBorder": "#d0e2f591", 136 | "editor.snippetFinalTabstopHighlightBackground": "#d0e2f5", 137 | "editor.snippetFinalTabstopHighlightBorder": "#d0e2f5", 138 | "editor.snippetTabstopHighlightBackground": "#d0e2f5", 139 | "editor.snippetTabstopHighlightBorder": "#d0e2f5", 140 | "editor.stackFrameHighlightBackground": "#49ff2525", 141 | "editor.symbolHighlightBackground": "#d0e2f5ad", 142 | "editor.symbolHighlightBorder": "#0008ff", 143 | "editor.wordHighlightTextBackground": "#d0e2f591", 144 | "editor.wordHighlightTextBorder": "#d0e2f5", 145 | "editorActionList.background": "#f9f6f6", 146 | "editorActionList.focusBackground": "#e0f1f9", 147 | "editorActionList.focusForeground": "#247bb8", 148 | "editorActionList.foreground": "#247bb8", 149 | "editorBracketHighlight.foreground1": "#247bb8", 150 | "editorBracketHighlight.foreground2": "#247bb8", 151 | "editorBracketHighlight.foreground3": "#247bb8", 152 | "editorBracketHighlight.foreground4": "#247bb8", 153 | "editorBracketHighlight.foreground5": "#247bb8", 154 | "editorBracketHighlight.foreground6": "#247bb8", 155 | "editorBracketHighlight.unexpectedBracket.foreground": "#c30000", 156 | "editorBracketMatch.background": "#d0e2f5", 157 | "editorBracketMatch.border": "#d0e2f5", 158 | "editorBracketPairGuide.activeBackground1": "#247bb8", 159 | "editorBracketPairGuide.activeBackground2": "#247bb8", 160 | "editorBracketPairGuide.activeBackground3": "#247bb8", 161 | "editorBracketPairGuide.activeBackground4": "#247bb8", 162 | "editorBracketPairGuide.activeBackground5": "#247bb8", 163 | "editorBracketPairGuide.activeBackground6": "#247bb8", 164 | "editorBracketPairGuide.background1": "#247bb8", 165 | "editorBracketPairGuide.background2": "#247bb8", 166 | "editorBracketPairGuide.background3": "#247bb8", 167 | "editorBracketPairGuide.background4": "#247bb8", 168 | "editorBracketPairGuide.background5": "#247bb8", 169 | "editorBracketPairGuide.background6": "#247bb8", 170 | "editorCodeLens.foreground": "#cacac7", 171 | "editorCommentsWidget.rangeActiveBackground": "#eadba0", 172 | "editorCommentsWidget.rangeBackground": "#eadba06c", 173 | "editorCommentsWidget.replyInputBackground": "#e7e8e9", 174 | "editorCommentsWidget.resolvedBorder": "#087e0a93", 175 | "editorCommentsWidget.unresolvedBorder": "#d15757", 176 | "editorCursor.background": "#ffffff", 177 | "editorCursor.foreground": "#417cb8", 178 | "editorError.background": "#ff000000", 179 | "editorError.border": "#ff000000", 180 | "editorError.foreground": "#c30000", 181 | "editorGhostText.background": "#e9f1f9ad", 182 | "editorGhostText.border": "#76757500", 183 | "editorGhostText.foreground": "#d1d1d1", 184 | "editorGroup.border": "#949191", 185 | "editorGroup.dropBackground": "#5e8ffa27", 186 | "editorGroup.dropIntoPromptBackground": "#f5f2dd", 187 | "editorGroup.dropIntoPromptBorder": "#bbbcaf", 188 | "editorGroup.dropIntoPromptForeground": "#000000", 189 | "editorGroup.emptyBackground": "#fdf7d7", 190 | "editorGroup.focusedEmptyBorder": "#949191", 191 | "editorGroupHeader.border": "#949191", 192 | "editorGroupHeader.noTabsBackground": "#fdf7d7", 193 | "editorGroupHeader.tabsBackground": "#fdf7d7", 194 | "editorGroupHeader.tabsBorder": "#949191", 195 | "editorGutter.addedBackground": "#087e0a5e", 196 | "editorGutter.background": "#fffbf0", 197 | "editorGutter.commentGlyphForeground": "#0064a2bb", 198 | "editorGutter.commentRangeForeground": "#bbe5ffbb", 199 | "editorGutter.commentUnresolvedGlyphForeground": "#c30000bb", 200 | "editorGutter.deletedBackground": "#c30000bb", 201 | "editorGutter.foldingControlForeground": "#0064a2bb", 202 | "editorGutter.itemBackground": "#fff70027", 203 | "editorGutter.itemGlyphForeground": "#247bb8", 204 | "editorGutter.modifiedBackground": "#bf8703b3", 205 | "editorHint.border": "#1222ce00", 206 | "editorHint.foreground": "#ff000000", 207 | "editorHoverWidget.background": "#f5f3f3", 208 | "editorHoverWidget.border": "#9fc4df", 209 | "editorHoverWidget.foreground": "#247bb8", 210 | "editorHoverWidget.highlightForeground": "#506ab7", 211 | "editorHoverWidget.statusBarBackground": "#f6f4ea", 212 | "editorIndentGuide.activeBackground1": "#dcddcf", 213 | "editorIndentGuide.activeBackground2": "#dcddcf", 214 | "editorIndentGuide.activeBackground3": "#dcddcf", 215 | "editorIndentGuide.activeBackground4": "#dcddcf", 216 | "editorIndentGuide.activeBackground5": "#dcddcf", 217 | "editorIndentGuide.activeBackground6": "#dcddcf", 218 | "editorIndentGuide.background1": "#e5e6d7", 219 | "editorIndentGuide.background2": "#e5e6d7", 220 | "editorIndentGuide.background3": "#e5e6d7", 221 | "editorIndentGuide.background4": "#e5e6d7", 222 | "editorIndentGuide.background5": "#e5e6d7", 223 | "editorIndentGuide.background6": "#e5e6d7", 224 | "editorInfo.background": "#68aeff00", 225 | "editorInfo.border": "#68aeff00", 226 | "editorInfo.foreground": "#68aeff", 227 | "editorInlayHint.background": "#fffbf0", 228 | "editorInlayHint.foreground": "#cacac7", 229 | "editorInlayHint.parameterBackground": "#fffbf0", 230 | "editorInlayHint.parameterForeground": "#cacac7", 231 | "editorInlayHint.typeBackground": "#fffbf0", 232 | "editorInlayHint.typeForeground": "#cacac7", 233 | "editorLightBulb.foreground": "#7ea4e0", 234 | "editorLightBulbAi.foreground": "#7ea4e0", 235 | "editorLightBulbAutoFix.foreground": "#7ea4e0", 236 | "editorLineNumber.activeForeground": "#417cb8", 237 | "editorLineNumber.dimmedForeground": "#417cb8", 238 | "editorLineNumber.foreground": "#c5c5c5", 239 | "editorLink.activeForeground": "#264fe4", 240 | "editorMarkerNavigation.background": "#efebeb", 241 | "editorMarkerNavigationError.background": "#f0d3d3", 242 | "editorMarkerNavigationError.headerBackground": "#f0d3d3", 243 | "editorMarkerNavigationInfo.background": "#d3dff0", 244 | "editorMarkerNavigationInfo.headerBackground": "#d3dff0", 245 | "editorMarkerNavigationWarning.background": "#f8e5c1", 246 | "editorMarkerNavigationWarning.headerBackground": "#f8e5c1", 247 | "editorMultiCursor.primary.background": "#fcfaf1", 248 | "editorMultiCursor.primary.foreground": "#417cb8", 249 | "editorMultiCursor.secondary.background": "#fcfaf1", 250 | "editorMultiCursor.secondary.foreground": "#91acc8", 251 | "editorOverviewRuler.addedForeground": "#087e0a93", 252 | "editorOverviewRuler.background": "#d4da8483", 253 | "editorOverviewRuler.border": "#d3d3d3", 254 | "editorOverviewRuler.bracketMatchForeground": "#a0a0a0", 255 | "editorOverviewRuler.currentContentForeground": "#eab7b7", 256 | "editorOverviewRuler.deletedForeground": "#c30000bb", 257 | "editorOverviewRuler.errorForeground": "#c30000", 258 | "editorOverviewRuler.findMatchForeground": "#0044ff30", 259 | "editorOverviewRuler.incomingContentForeground": "#94e375", 260 | "editorOverviewRuler.infoForeground": "#1a85ff63", 261 | "editorOverviewRuler.modifiedForeground": "#bf8703b3", 262 | "editorOverviewRuler.rangeHighlightForeground": "#d603ee00", 263 | "editorOverviewRuler.selectionHighlightForeground": "#0078d400", 264 | "editorOverviewRuler.warningForeground": "#bf8803", 265 | "editorOverviewRuler.wordHighlightForeground": "#d603ee00", 266 | "editorOverviewRuler.wordHighlightStrongForeground": "#d603ee00", 267 | "editorOverviewRuler.wordHighlightTextForeground": "#d603ee00", 268 | "editorPane.background": "#fef9df", 269 | "editorRuler.foreground": "#8ec1e496", 270 | "editorStickyScroll.background": "#f5f2e8", 271 | "editorStickyScroll.border": "#d3d4c4", 272 | "editorStickyScroll.shadow": "#bbbcaf", 273 | "editorStickyScrollHover.background": "#efebeb", 274 | "editorSuggestWidget.background": "#f6f4ea", 275 | "editorSuggestWidget.border": "#9fc4df", 276 | "editorSuggestWidget.focusHighlightForeground": "#012bab", 277 | "editorSuggestWidget.foreground": "#247bb8", 278 | "editorSuggestWidget.highlightForeground": "#012bab", 279 | "editorSuggestWidget.selectedBackground": "#c2dbfe", 280 | "editorSuggestWidget.selectedForeground": "#4f4e4e", 281 | "editorSuggestWidget.selectedIconForeground": "#4f4e4e", 282 | "editorSuggestWidgetStatus.foreground": "#636367", 283 | "editorUnicodeHighlight.background": "#bcdaf83e", 284 | "editorUnicodeHighlight.border": "#4151b859", 285 | "editorUnnecessaryCode.border": "#d29436", 286 | "editorUnnecessaryCode.opacity": "#000000c0", 287 | "editorWarning.background": "#b8810000", 288 | "editorWarning.border": "#b8810000", 289 | "editorWarning.foreground": "#b88100c0", 290 | "editorWatermark.foreground": "#000000", 291 | "editorWhitespace.foreground": "#e0e0d1", 292 | "editorWidget.background": "#f5f3f3", 293 | "editorWidget.border": "#9fc4df", 294 | "editorWidget.foreground": "#474747", 295 | "editorWidget.resizeBorder": "#9fc4df", 296 | "errorForeground": "#b40000", 297 | "extensionButton.background": "#69afe1", 298 | "extensionButton.foreground": "#ffffff", 299 | "extensionButton.hoverBackground": "#599ed0", 300 | "extensionButton.prominentBackground": "#258bd3", 301 | "extensionButton.prominentForeground": "#ffffff", 302 | "extensionButton.prominentHoverBackground": "#258bd3", 303 | "extensionButton.separator": "#69afe1", 304 | "extensionIcon.preReleaseForeground": "#5ca6dc", 305 | "extensionIcon.privateForeground": "#e7b0fa", 306 | "extensionIcon.sponsorForeground": "#16d456", 307 | "extensionIcon.starForeground": "#258bd3", 308 | "extensionIcon.verifiedForeground": "#258bd3", 309 | "focusBorder": "#949191", 310 | "foreground": "#474747", 311 | "gitDecoration.addedResourceForeground": "#009634", 312 | "gitDecoration.conflictingResourceForeground": "#e4676b", 313 | "gitDecoration.deletedResourceForeground": "#c74e39", 314 | "gitDecoration.ignoredResourceForeground": "#8c8c8c", 315 | "gitDecoration.modifiedResourceForeground": "#ca7900", 316 | "gitDecoration.renamedResourceForeground": "#73c991", 317 | "gitDecoration.stageDeletedResourceForeground": "#c74e39", 318 | "gitDecoration.stageModifiedResourceForeground": "#e2c08d", 319 | "gitDecoration.submoduleResourceForeground": "#8db9e2", 320 | "gitDecoration.untrackedResourceForeground": "#009634", 321 | "icon.foreground": "#4d4d4d", 322 | "input.background": "#fdfcfc", 323 | "input.border": "#cfcdcd", 324 | "input.foreground": "#949090", 325 | "input.placeholderForeground": "#cfcdcd", 326 | "inputOption.activeBackground": "#e6f5fc", 327 | "inputOption.activeBorder": "#474747", 328 | "inputOption.activeForeground": "#474747", 329 | "inputOption.hoverBackground": "#e6f5fc", 330 | "inputValidation.errorBackground": "#fdf2ee", 331 | "inputValidation.errorBorder": "#b40000", 332 | "inputValidation.errorForeground": "#b40000", 333 | "inputValidation.infoBackground": "#d5e9f3", 334 | "inputValidation.infoBorder": "#a1bdeb", 335 | "inputValidation.infoForeground": "#474747", 336 | "inputValidation.warningBackground": "#d5e9f3", 337 | "inputValidation.warningBorder": "#a1bdeb", 338 | "inputValidation.warningForeground": "#474747", 339 | "keybindingLabel.background": "#e6f5fc", 340 | "keybindingLabel.border": "#258bd3", 341 | "keybindingLabel.bottomBorder": "#258bd3", 342 | "keybindingLabel.foreground": "#494848", 343 | "keybindingTable.headerBackground": "#91ccf7", 344 | "keybindingTable.rowsBackground": "#e6f5fc", 345 | "list.activeSelectionBackground": "#e0f1f9ab", 346 | "list.activeSelectionForeground": "#000000", 347 | "list.activeSelectionIconForeground": "#474747", 348 | "list.dropBackground": "#5e8ffa27", 349 | "list.errorForeground": "#ce4040", 350 | "list.focusAndSelectionOutline": "#003df57d", 351 | "list.focusBackground": "#e0f1f9ab", 352 | "list.focusForeground": "#464646", 353 | "list.focusHighlightForeground": "#247bb8", 354 | "list.focusOutline": "#003df57d", 355 | "list.highlightForeground": "#247bb8", 356 | "list.hoverBackground": "#e0f1f9ab", 357 | "list.hoverForeground": "#464646", 358 | "list.inactiveFocusBackground": "#e0f1f9ab", 359 | "list.inactiveFocusOutline": "#003df57d", 360 | "list.inactiveSelectionBackground": "#e0f1f9ab", 361 | "list.inactiveSelectionForeground": "#464646", 362 | "list.inactiveSelectionIconForeground": "#474747", 363 | "list.invalidItemForeground": "#c30000", 364 | "list.warningForeground": "#bc9125", 365 | "menu.background": "#fffbfb", 366 | "menu.border": "#e4dfdf", 367 | "menu.foreground": "#494848", 368 | "menu.selectionBackground": "#c0dff5", 369 | "menu.selectionBorder": "#c0dff5", 370 | "menu.selectionForeground": "#494848", 371 | "menu.separatorBackground": "#e4dfdf", 372 | "menubar.selectionBackground": "#c0dff5", 373 | "menubar.selectionBorder": "#c0dff5", 374 | "menubar.selectionForeground": "#494848", 375 | "merge.border": "#cfcdcd", 376 | "merge.currentContentBackground": "#ff9e9e1b", 377 | "merge.currentHeaderBackground": "#f8a9a946", 378 | "merge.incomingContentBackground": "#c2f7ad47", 379 | "merge.incomingHeaderBackground": "#c2f7ada5", 380 | "mergeEditor.change.background": "#99c3e42f", 381 | "mergeEditor.change.word.background": "#99c3e441", 382 | "mergeEditor.conflict.handled.minimapOverViewRuler": "#34aa05", 383 | "mergeEditor.conflict.handledFocused.border": "#34aa05", 384 | "mergeEditor.conflict.handledUnfocused.border": "#34aa05", 385 | "mergeEditor.conflict.unhandled.minimapOverViewRuler": "#de6161", 386 | "mergeEditor.conflict.unhandledFocused.border": "#f93e3e68", 387 | "mergeEditor.conflict.unhandledUnfocused.border": "#f93e3e68", 388 | "minimap.background": "#fdf7d7", 389 | "minimap.errorHighlight": "#c30000", 390 | "minimap.findMatchHighlight": "#61a9ddbb", 391 | "minimap.foregroundOpacity": "#000000c0", 392 | "minimap.infoHighlight": "#1a85ff51", 393 | "minimap.selectionHighlight": "#61a9ddbb", 394 | "minimap.selectionOccurrenceHighlight": "#6767679f", 395 | "minimap.warningHighlight": "#bc8b0f", 396 | "minimapGutter.addedBackground": "#087e0a93", 397 | "minimapGutter.deletedBackground": "#c30000bb", 398 | "minimapGutter.modifiedBackground": "#bf8703b3", 399 | "minimapSlider.activeBackground": "#4151b84e", 400 | "minimapSlider.background": "#4151b838", 401 | "minimapSlider.hoverBackground": "#4151b838", 402 | "multiDiffEditor.background": "#fffca327", 403 | "multiDiffEditor.border": "#cfcdcd", 404 | "multiDiffEditor.headerBackground": "#fbed9e", 405 | "notebook.cellBorderColor": "#cfcdcd", 406 | "notebook.cellEditorBackground": "#fffbf0", 407 | "notebook.cellHoverBackground": "#e0f1f9ab", 408 | "notebook.cellInsertionIndicator": "#258bd3", 409 | "notebook.cellStatusBarItemHoverBackground": "#add9f8", 410 | "notebook.cellToolbarSeparator": "#add9f8", 411 | "notebook.editorBackground": "#fdf7d754", 412 | "notebook.focusedCellBackground": "#fdf7d754", 413 | "notebook.focusedCellBorder": "#add9f8", 414 | "notebook.focusedEditorBorder": "#949191", 415 | "notebook.inactiveFocusedCellBorder": "#add9f8", 416 | "notebook.inactiveSelectedCellBorder": "#add9f8", 417 | "notebook.outputContainerBackgroundColor": "#fdf7d754", 418 | "notebook.outputContainerBorderColor": "#fdf7d754", 419 | "notebook.selectedCellBackground": "#ff000000", 420 | "notebook.selectedCellBorder": "#ff000000", 421 | "notebook.symbolHighlightBackground": "#ff000000", 422 | "notebookEditorOverviewRuler.runningCellForeground": "#1d9100", 423 | "notebookScrollbarSlider.activeBackground": "#a2dcf8", 424 | "notebookScrollbarSlider.background": "#f1edcf", 425 | "notebookScrollbarSlider.hoverBackground": "#c4e5f4", 426 | "notebookStatusErrorIcon.foreground": "#c30000", 427 | "notebookStatusRunningIcon.foreground": "#000000", 428 | "notebookStatusSuccessIcon.foreground": "#1d9100", 429 | "notificationCenter.border": "#258bd3", 430 | "notificationCenterHeader.background": "#258bd3", 431 | "notificationCenterHeader.foreground": "#ffffff", 432 | "notificationLink.foreground": "#9c682b", 433 | "notificationToast.border": "#258bd3", 434 | "notifications.background": "#d0e8f8", 435 | "notifications.border": "#258bd3", 436 | "notifications.foreground": "#494848", 437 | "notificationsErrorIcon.foreground": "#ff0000", 438 | "notificationsInfoIcon.foreground": "#258bd3", 439 | "notificationsWarningIcon.foreground": "#ff9100", 440 | "outputView.background": "#fdf9e4", 441 | "outputViewStickyScroll.background": "#fdf9e4", 442 | "panel.background": "#fdf9e4", 443 | "panel.border": "#949191", 444 | "panel.dropBorder": "#949191", 445 | "panelInput.border": "#cfcdcd", 446 | "panelSection.border": "#cfcdcd", 447 | "panelSection.dropBackground": "#5e8ffa27", 448 | "panelSectionHeader.background": "#fff5b9", 449 | "panelSectionHeader.border": "#ff000000", 450 | "panelSectionHeader.foreground": "#000000", 451 | "panelStickyScroll.background": "#fdf9e4", 452 | "panelStickyScroll.border": "#bbbcaf", 453 | "panelStickyScroll.shadow": "#bbbcaf", 454 | "panelTitle.activeBorder": "#94919100", 455 | "panelTitle.activeForeground": "#000000", 456 | "panelTitle.border": "#cfcdcd", 457 | "panelTitle.inactiveForeground": "#838383", 458 | "peekView.border": "#9fc4df", 459 | "peekViewEditor.background": "#fffde4", 460 | "peekViewEditor.matchHighlightBackground": "#c7e3f8", 461 | "peekViewEditor.matchHighlightBorder": "#bbbcaf00", 462 | "peekViewEditorGutter.background": "#fdf86127", 463 | "peekViewEditorStickyScroll.background": "#e6f0f8", 464 | "peekViewResult.background": "#fffde4", 465 | "peekViewResult.fileForeground": "#000000", 466 | "peekViewResult.lineForeground": "#247bb8", 467 | "peekViewResult.matchHighlightBackground": "#c7e3f800", 468 | "peekViewResult.selectionBackground": "#c2dbfe00", 469 | "peekViewResult.selectionForeground": "#247bb8", 470 | "peekViewTitle.background": "#e4ecf1c8", 471 | "peekViewTitleDescription.foreground": "#000000", 472 | "peekViewTitleLabel.foreground": "#000000", 473 | "pickerGroup.border": "#258bd3", 474 | "pickerGroup.foreground": "#258bd3", 475 | "ports.iconRunningProcessForeground": "#369432", 476 | "problemsErrorIcon.foreground": "#c30000", 477 | "problemsInfoIcon.foreground": "#1a85ff", 478 | "problemsWarningIcon.foreground": "#d49500", 479 | "profileBadge.background": "#7ea4e0", 480 | "profileBadge.foreground": "#f8f8f8", 481 | "profiles.sashBorder": "#bcafaf", 482 | "progressBar.background": "#cfcdcd", 483 | "quickInput.background": "#f9f6f6", 484 | "quickInput.foreground": "#494848", 485 | "quickInputList.focusBackground": "#e0f1f9", 486 | "quickInputList.focusForeground": "#494848", 487 | "quickInputList.focusIconForeground": "#258bd3", 488 | "quickInputTitle.background": "#f9f6f6", 489 | "radio.activeBackground": "#00802d21", 490 | "radio.activeBorder": "#6996de", 491 | "radio.activeForeground": "#000000", 492 | "radio.inactiveBackground": "#a3cfff5a", 493 | "radio.inactiveBorder": "#cfcdcd", 494 | "radio.inactiveForeground": "#000000a6", 495 | "radio.inactiveHoverBackground": "#00802d30", 496 | "sash.hoverBorder": "#258bd3", 497 | "scmGraph.foreground1": "#edb02d", 498 | "scmGraph.foreground2": "#eb6fab", 499 | "scmGraph.foreground3": "#b98750", 500 | "scmGraph.foreground4": "#40b0a6", 501 | "scmGraph.foreground5": "#b66dff", 502 | "scmGraph.historyItemBaseRefColor": "#6996de", 503 | "scmGraph.historyItemHoverAdditionsForeground": "#81b88b", 504 | "scmGraph.historyItemHoverDefaultLabelBackground": "#7ea4e0", 505 | "scmGraph.historyItemHoverDefaultLabelForeground": "#000000", 506 | "scmGraph.historyItemHoverDeletionsForeground": "#c74e39", 507 | "scmGraph.historyItemHoverLabelForeground": "#ffffff", 508 | "scmGraph.historyItemRefColor": "#a7c2ee", 509 | "scmGraph.historyItemRemoteRefColor": "#b180d7", 510 | "scrollbar.shadow": "#949191", 511 | "scrollbarSlider.activeBackground": "#a1bdeb", 512 | "scrollbarSlider.background": "#bac9e1", 513 | "scrollbarSlider.hoverBackground": "#a1bdeb", 514 | "search.resultsInfoForeground": "#247bb8", 515 | "searchEditor.findMatchBackground": "#d0e2f5", 516 | "searchEditor.findMatchBorder": "#d0e2f5", 517 | "searchEditor.textInputBorder": "#a29f9f", 518 | "selection.background": "#d4e7fb", 519 | "settings.checkboxBackground": "#f8f5f5", 520 | "settings.checkboxBorder": "#8c8c90", 521 | "settings.checkboxForeground": "#464646", 522 | "settings.dropdownBackground": "#f8f5f5", 523 | "settings.dropdownBorder": "#8c8c90", 524 | "settings.dropdownForeground": "#464646", 525 | "settings.dropdownListBorder": "#8c8c90", 526 | "settings.focusedRowBackground": "#cde5f8", 527 | "settings.focusedRowBorder": "#8c8c90", 528 | "settings.headerBorder": "#8c8c90", 529 | "settings.headerForeground": "#258bd3", 530 | "settings.modifiedItemIndicator": "#258bd3", 531 | "settings.numberInputBackground": "#f8f5f5", 532 | "settings.numberInputBorder": "#8c8c90", 533 | "settings.numberInputForeground": "#464646", 534 | "settings.rowHoverBackground": "#e6f5fca8", 535 | "settings.sashBorder": "#8c8c90", 536 | "settings.settingsHeaderHoverForeground": "#258bd3", 537 | "settings.textInputBackground": "#f8f5f5", 538 | "settings.textInputBorder": "#8c8c90", 539 | "settings.textInputForeground": "#464646", 540 | "sideBar.background": "#fdf7d7", 541 | "sideBar.border": "#949191", 542 | "sideBar.dropBackground": "#5e8ffa27", 543 | "sideBar.foreground": "#464646", 544 | "sideBarActivityBarTop.border": "#bbbcaf", 545 | "sideBarSectionHeader.background": "#fbed9e", 546 | "sideBarSectionHeader.border": "#fbed9e", 547 | "sideBarSectionHeader.foreground": "#464646", 548 | "sideBarStickyScroll.background": "#fdf7d7", 549 | "sideBarStickyScroll.border": "#bbbcaf", 550 | "sideBarStickyScroll.shadow": "#bbbcaf", 551 | "sideBarTitle.background": "#fbed9e", 552 | "sideBarTitle.foreground": "#000000", 553 | "sideBySideEditor.horizontalBorder": "#bbbcaf", 554 | "sideBySideEditor.verticalBorder": "#bbbcaf", 555 | "statusBar.background": "#e7e1e1", 556 | "statusBar.border": "#949191", 557 | "statusBar.debuggingBackground": "#c6eabf", 558 | "statusBar.debuggingBorder": "#000000", 559 | "statusBar.debuggingForeground": "#000000", 560 | "statusBar.focusBorder": "#005fb8", 561 | "statusBar.foreground": "#494848", 562 | "statusBar.noFolderBackground": "#e7e1e1", 563 | "statusBar.noFolderBorder": "#949191", 564 | "statusBar.noFolderForeground": "#494848", 565 | "statusBarItem.activeBackground": "#e7e1e1", 566 | "statusBarItem.compactHoverBackground": "#cccccc", 567 | "statusBarItem.errorBackground": "#c72e0f", 568 | "statusBarItem.focusBorder": "#005fb8", 569 | "statusBarItem.hoverBackground": "#e7e1e1", 570 | "statusBarItem.hoverForeground": "#2735ad", 571 | "statusBarItem.prominentBackground": "#e7e1e1", 572 | "statusBarItem.prominentForeground": "#494848", 573 | "statusBarItem.prominentHoverBackground": "#e7e1e1", 574 | "statusBarItem.prominentHoverForeground": "#2735ad", 575 | "statusBarItem.remoteBackground": "#7ea4e0", 576 | "statusBarItem.remoteForeground": "#ffffff", 577 | "statusBarItem.remoteHoverBackground": "#7ea4e0", 578 | "statusBarItem.remoteHoverForeground": "#ffffff", 579 | "symbolIcon.arrayForeground": "#8a9ed2", 580 | "symbolIcon.booleanForeground": "#8a9ed2", 581 | "symbolIcon.classForeground": "#0e3bad", 582 | "symbolIcon.colorForeground": "#8a9ed2", 583 | "symbolIcon.constantForeground": "#8a9ed2", 584 | "symbolIcon.constructorForeground": "#5570b5", 585 | "symbolIcon.enumeratorForeground": "#8a9ed2", 586 | "symbolIcon.enumeratorMemberForeground": "#8a9ed2", 587 | "symbolIcon.eventForeground": "#0e3bad", 588 | "symbolIcon.fieldForeground": "#8a9ed2", 589 | "symbolIcon.fileForeground": "#8a9ed2", 590 | "symbolIcon.folderForeground": "#8a9ed2", 591 | "symbolIcon.functionForeground": "#5570b5", 592 | "symbolIcon.interfaceForeground": "#0e3bad", 593 | "symbolIcon.keyForeground": "#8a9ed2", 594 | "symbolIcon.keywordForeground": "#8a9ed2", 595 | "symbolIcon.methodForeground": "#5570b5", 596 | "symbolIcon.moduleForeground": "#0e3bad", 597 | "symbolIcon.namespaceForeground": "#0e3bad", 598 | "symbolIcon.nullForeground": "#8a9ed2", 599 | "symbolIcon.numberForeground": "#8a9ed2", 600 | "symbolIcon.objectForeground": "#5570b5", 601 | "symbolIcon.operatorForeground": "#5570b5", 602 | "symbolIcon.packageForeground": "#0e3bad", 603 | "symbolIcon.propertyForeground": "#8a9ed2", 604 | "symbolIcon.referenceForeground": "#5570b5", 605 | "symbolIcon.snippetForeground": "#8a9ed2", 606 | "symbolIcon.stringForeground": "#8a9ed2", 607 | "symbolIcon.structForeground": "#5570b5", 608 | "symbolIcon.textForeground": "#8a9ed2", 609 | "symbolIcon.typeParameterForeground": "#8a9ed2", 610 | "symbolIcon.unitForeground": "#5570b5", 611 | "symbolIcon.variableForeground": "#8a9ed2", 612 | "tab.activeBackground": "#ffe5551e", 613 | "tab.activeBorder": "#949191", 614 | "tab.activeBorderTop": "#94919100", 615 | "tab.activeForeground": "#000000", 616 | "tab.activeModifiedBorder": "#949191", 617 | "tab.border": "#949191", 618 | "tab.dragAndDropBorder": "#000000", 619 | "tab.hoverBackground": "#fff5b9", 620 | "tab.hoverBorder": "#949191", 621 | "tab.hoverForeground": "#000000", 622 | "tab.inactiveBackground": "#fdf7d7", 623 | "tab.inactiveForeground": "#7c7c7c", 624 | "tab.inactiveModifiedBorder": "#949191", 625 | "tab.lastPinnedBorder": "#949191", 626 | "tab.selectedBackground": "#ffffffa5", 627 | "tab.selectedBorderTop": "#68a3da", 628 | "tab.selectedForeground": "#333333b3", 629 | "tab.unfocusedActiveBackground": "#fff5b9", 630 | "tab.unfocusedActiveBorder": "#949191", 631 | "tab.unfocusedActiveBorderTop": "#fffbf000", 632 | "tab.unfocusedActiveForeground": "#000000", 633 | "tab.unfocusedActiveModifiedBorder": "#949191", 634 | "tab.unfocusedHoverBackground": "#fff5b9", 635 | "tab.unfocusedHoverBorder": "#949191", 636 | "tab.unfocusedHoverForeground": "#000000", 637 | "tab.unfocusedInactiveBackground": "#fdf7d7", 638 | "tab.unfocusedInactiveForeground": "#7c7c7c", 639 | "tab.unfocusedInactiveModifiedBorder": "#949191", 640 | "terminal.ansiBlack": "#000000", 641 | "terminal.ansiBlue": "#000080", 642 | "terminal.ansiBrightBlack": "#555555", 643 | "terminal.ansiBrightBlue": "#0000ff", 644 | "terminal.ansiBrightCyan": "#00ffff", 645 | "terminal.ansiBrightGreen": "#00ff00", 646 | "terminal.ansiBrightMagenta": "#ff00ff", 647 | "terminal.ansiBrightRed": "#ff0000", 648 | "terminal.ansiBrightWhite": "#ffffff", 649 | "terminal.ansiBrightYellow": "#ffff00", 650 | "terminal.ansiCyan": "#008080", 651 | "terminal.ansiGreen": "#008000", 652 | "terminal.ansiMagenta": "#800080", 653 | "terminal.ansiRed": "#800000", 654 | "terminal.ansiWhite": "#c0c0c0", 655 | "terminal.ansiYellow": "#808000", 656 | "terminal.background": "#fdf9e4", 657 | "terminal.border": "#cfcdcd", 658 | "terminal.findMatchBackground": "#accff489", 659 | "terminal.findMatchBorder": "#d0e2f5", 660 | "terminal.findMatchHighlightBackground": "#accff489", 661 | "terminal.findMatchHighlightBorder": "#d0e2f591", 662 | "terminal.foreground": "#247bb8", 663 | "terminal.inactiveSelectionBackground": "#d0e2f5", 664 | "terminal.selectionBackground": "#d0e2f5", 665 | "terminal.selectionForeground": "#464646", 666 | "terminal.tab.activeBorder": "#005fb8", 667 | "terminalCommandDecoration.defaultBackground": "#247bb8", 668 | "terminalCommandDecoration.errorBackground": "#c30000bb", 669 | "terminalCommandDecoration.successBackground": "#087e0a62", 670 | "terminalCursor.foreground": "#005fb8", 671 | "testing.iconErrored": "#ff0000", 672 | "testing.iconFailed": "#ca2c2c", 673 | "testing.iconPassed": "#1dcc60", 674 | "testing.iconQueued": "#258bd3", 675 | "testing.iconSkipped": "#848484", 676 | "testing.iconUnset": "#258bd3", 677 | "testing.peekBorder": "#c300008e", 678 | "testing.peekHeaderBackground": "#f8c2c268", 679 | "testing.runAction": "#258bd3", 680 | "textBlockQuote.background": "#ececec", 681 | "textBlockQuote.border": "#258bd3", 682 | "textCodeBlock.background": "#ececec", 683 | "textLink.activeForeground": "#197fc8", 684 | "textLink.foreground": "#258bd3", 685 | "textPreformat.background": "#c0d3fd54", 686 | "textPreformat.foreground": "#9c682b", 687 | "textSeparator.foreground": "#474747", 688 | "titleBar.activeBackground": "#e7e1e1", 689 | "titleBar.activeForeground": "#494848", 690 | "titleBar.border": "#949191", 691 | "titleBar.inactiveBackground": "#e4dfdf", 692 | "titleBar.inactiveForeground": "#494848", 693 | "toolbar.activeBackground": "#c0dff5", 694 | "toolbar.hoverBackground": "#c0dff5", 695 | "toolbar.hoverOutline": "#c0dff5", 696 | "tree.inactiveIndentGuidesStroke": "#e7e3e3", 697 | "tree.indentGuidesStroke": "#e7e3e3", 698 | "tree.tableColumnsBorder": "#cfcdcd", 699 | "walkThrough.embeddedEditorBackground": "#fffbf0", 700 | "walkthrough.stepTitle.foreground": "#464646", 701 | "welcomePage.background": "#fdf7d7", 702 | "welcomePage.progress.background": "#f8f5f5", 703 | "welcomePage.progress.foreground": "#258ad390", 704 | "welcomePage.tileBackground": "#fffbf0", 705 | "welcomePage.tileBorder": "#f8000000", 706 | "welcomePage.tileHoverBackground": "#f8f5f5", 707 | "widget.border": "#949191", 708 | //"chart.axis": "#00000099", 709 | //"chart.guide": "#00000033", 710 | //"chart.line": "#236b8e", 711 | //"charts.blue": "#68aeff", 712 | //"charts.foreground": "#474747", 713 | //"charts.green": "#388a34", 714 | //"charts.lines": "#47474780", 715 | //"charts.orange": "#61a9ddbb", 716 | //"charts.purple": "#652d90", 717 | //"charts.red": "#c30000", 718 | //"charts.yellow": "#b88100c0", 719 | //"chat.avatarBackground": "#f2f2f2", 720 | //"chat.avatarForeground": "#474747", 721 | //"chat.requestBackground": "#fffbf09e", 722 | //"chat.requestBorder": "#0000001a", 723 | //"commentsView.resolvedIcon": "#ebe2e2", 724 | //"commentsView.unresolvedIcon": "#003df57d", 725 | //"diffEditor.move.border": "#8b8b8b9c", 726 | //"diffEditor.moveActive.border": "#ffa500", 727 | //"diffEditor.unchangedCodeBackground": "#b8b8b829", 728 | //"diffEditor.unchangedRegionForeground": "#474747", 729 | //"diffEditor.unchangedRegionShadow": "#737373bf", 730 | //"editor.compositionBorder": "#000000", 731 | //"editor.rangeHighlightBackground": "#fdff0033", 732 | //"editor.wordHighlightBackground": "#57575740", 733 | //"editor.wordHighlightStrongBackground": "#0e639c40", 734 | //"editorMinimap.inlineChatInserted": "#baf4b7be", 735 | //"editorOverviewRuler.commentForeground": "#bbe5ffbb", 736 | //"editorOverviewRuler.commentUnresolvedForeground": "#bbe5ffbb", 737 | //"editorOverviewRuler.commonContentForeground": "#60606066", 738 | //"editorOverviewRuler.inlineChatInserted": "#baf4b7be", 739 | //"editorOverviewRuler.inlineChatRemoved": "#ea929238", 740 | //"extensionBadge.remoteBackground": "#7ea4e0", 741 | //"extensionBadge.remoteForeground": "#f8f8f8", 742 | //"gauge.background": "#a1bdeb", 743 | //"gauge.errorBackground": "#b40000", 744 | //"gauge.errorForeground": "#b400004d", 745 | //"gauge.foreground": "#a1bdeb4d", 746 | //"gauge.warningBackground": "#a1bdeb", 747 | //"gauge.warningForeground": "#a1bdeb4d", 748 | //"git.blame.editorDecorationForeground": "#cacac7", 749 | //"inlineChat.background": "#f5f3f3", 750 | //"inlineChat.border": "#9fc4df", 751 | //"inlineChat.foreground": "#474747", 752 | //"inlineChat.shadow": "#00000029", 753 | //"inlineChatDiff.inserted": "#baf4b777", 754 | //"inlineChatDiff.removed": "#ea929223", 755 | //"inlineChatInput.background": "#fdfcfc", 756 | //"inlineChatInput.border": "#9fc4df", 757 | //"inlineChatInput.focusBorder": "#949191", 758 | //"inlineChatInput.placeholderForeground": "#cfcdcd", 759 | //"inlineEdit.gutterIndicator.background": "#5f5f5f18", 760 | //"inlineEdit.gutterIndicator.primaryBackground": "#a3cfff2d", 761 | //"inlineEdit.gutterIndicator.primaryBorder": "#a3cfff5a", 762 | //"inlineEdit.gutterIndicator.primaryForeground": "#000000", 763 | //"inlineEdit.gutterIndicator.secondaryBackground": "#a3cfff5a", 764 | //"inlineEdit.gutterIndicator.secondaryBorder": "#a3cfff5a", 765 | //"inlineEdit.gutterIndicator.secondaryForeground": "#000000", 766 | //"inlineEdit.gutterIndicator.successfulBackground": "#a3cfff5a", 767 | //"inlineEdit.gutterIndicator.successfulBorder": "#a3cfff5a", 768 | //"inlineEdit.gutterIndicator.successfulForeground": "#000000", 769 | //"inlineEdit.modifiedBackground": "#baf4b747", 770 | //"inlineEdit.modifiedBorder": "#1d9417ee", 771 | //"inlineEdit.modifiedChangedLineBackground": "#1af85914", 772 | //"inlineEdit.modifiedChangedTextBackground": "#baf4b7a7", 773 | //"inlineEdit.originalBackground": "#ea92920e", 774 | //"inlineEdit.originalBorder": "#ea929246", 775 | //"inlineEdit.originalChangedLineBackground": "#ea929238", 776 | //"inlineEdit.originalChangedTextBackground": "#ea929238", 777 | //"inlineEdit.tabWillAcceptModifiedBorder": "#1d9417ee", 778 | //"inlineEdit.tabWillAcceptOriginalBorder": "#ea929246", 779 | //"interactive.activeCodeBorder": "#9fc4df", 780 | //"interactive.inactiveCodeBorder": "#e0f1f9ab", 781 | //"list.deemphasizedForeground": "#8e8e90", 782 | //"list.dropBetweenBackground": "#4d4d4d", 783 | //"list.filterMatchBackground": "#d0e2f591", 784 | //"list.filterMatchBorder": "#d0e2f591", 785 | //"listFilterWidget.background": "#f5f3f3", 786 | //"listFilterWidget.noMatchesOutline": "#be1100", 787 | //"listFilterWidget.outline": "#00000000", 788 | //"listFilterWidget.shadow": "#00000029", 789 | //"merge.commonContentBackground": "#60606029", 790 | //"merge.commonHeaderBackground": "#60606066", 791 | //"mergeEditor.changeBase.background": "#ffcccc", 792 | //"mergeEditor.changeBase.word.background": "#ffa3a3", 793 | //"mergeEditor.conflict.input1.background": "#f8a9a91c", 794 | //"mergeEditor.conflict.input2.background": "#c2f7ad42", 795 | //"mergeEditor.conflictingLines.background": "#ffea0047", 796 | //"minimap.chatEditHighlight": "#fffbf099", 797 | //"panelTitleBadge.background": "#7ea4e0", 798 | //"panelTitleBadge.foreground": "#f8f8f8", 799 | //"simpleFindWidget.sashBorder": "#c8c8c8", 800 | //"statusBarItem.errorForeground": "#ffffff", 801 | //"statusBarItem.errorHoverBackground": "#e7e1e1", 802 | //"statusBarItem.errorHoverForeground": "#2735ad", 803 | //"statusBarItem.offlineBackground": "#6c1717", 804 | //"statusBarItem.offlineForeground": "#ffffff", 805 | //"statusBarItem.offlineHoverBackground": "#e7e1e1", 806 | //"statusBarItem.offlineHoverForeground": "#2735ad", 807 | //"statusBarItem.warningBackground": "#6f4d00c0", 808 | //"statusBarItem.warningForeground": "#ffffff", 809 | //"statusBarItem.warningHoverBackground": "#e7e1e1", 810 | //"statusBarItem.warningHoverForeground": "#2735ad", 811 | //"terminal.dropBackground": "#5e8ffa27", 812 | //"terminal.hoverHighlightBackground": "#d0e2f556", 813 | //"terminal.initialHintForeground": "#00000077", 814 | //"terminalCommandGuide.foreground": "#e0f1f9ab", 815 | //"terminalOverviewRuler.border": "#d3d3d3", 816 | //"terminalOverviewRuler.cursorForeground": "#a0a0a0cc", 817 | //"terminalOverviewRuler.findMatchForeground": "#0044ff30", 818 | //"terminalStickyScrollHover.background": "#f0f0f0", 819 | //"terminalSymbolIcon.aliasForeground": "#5570b5", 820 | //"terminalSymbolIcon.argumentForeground": "#8a9ed2", 821 | //"terminalSymbolIcon.fileForeground": "#8a9ed2", 822 | //"terminalSymbolIcon.flagForeground": "#8a9ed2", 823 | //"terminalSymbolIcon.folderForeground": "#8a9ed2", 824 | //"terminalSymbolIcon.methodForeground": "#5570b5", 825 | //"terminalSymbolIcon.optionForeground": "#8a9ed2", 826 | //"terminalSymbolIcon.optionValueForeground": "#8a9ed2", 827 | //"testing.coverCountBadgeBackground": "#a1bdeb", 828 | //"testing.coverCountBadgeForeground": "#f8f8f8", 829 | //"testing.coveredBackground": "#baf4b7ee", 830 | //"testing.coveredBorder": "#baf4b7b3", 831 | //"testing.coveredGutterBackground": "#baf4b78f", 832 | //"testing.iconErrored.retired": "#ff0000b3", 833 | //"testing.iconFailed.retired": "#ca2c2cb3", 834 | //"testing.iconPassed.retired": "#1dcc60b3", 835 | //"testing.iconQueued.retired": "#258bd3b3", 836 | //"testing.iconSkipped.retired": "#848484b3", 837 | //"testing.iconUnset.retired": "#258bd3b3", 838 | //"testing.message.error.badgeBackground": "#f8f8f8", 839 | //"testing.message.error.badgeBorder": "#f8f8f8", 840 | //"testing.message.error.badgeForeground": "#e07e7e", 841 | //"testing.message.info.decorationForeground": "#0664a768", 842 | //"testing.messagePeekBorder": "#68aeff", 843 | //"testing.messagePeekHeaderBackground": "#68aeff1a", 844 | //"testing.uncoveredBackground": "#ea929246", 845 | //"testing.uncoveredBorder": "#ea929235", 846 | //"testing.uncoveredBranchBackground": "#f3c1bc", 847 | //"testing.uncoveredGutterBackground": "#ea929269", 848 | //"tree.tableOddRowsBackground": "#4747470a", 849 | //"widget.shadow": "#00000029", 850 | //"contrastActiveBorder": null, 851 | //"contrastBorder": null, 852 | //"diffEditorOverview.insertedForeground": null, 853 | //"diffEditorOverview.removedForeground": null, 854 | //"editor.findMatchForeground": null, 855 | //"editor.findMatchHighlightForeground": null, 856 | //"editor.rangeHighlightBorder": null, 857 | //"editor.selectionForeground": null, 858 | //"editor.wordHighlightBorder": null, 859 | //"editor.wordHighlightStrongBorder": null, 860 | //"gauge.border": null, 861 | //"sideBarTitle.border": null, 862 | //"terminalCursor.background": null, 863 | //"terminalStickyScroll.background": null, 864 | //"terminalStickyScroll.border": null, 865 | //"terminalSymbolIcon.inlineSuggestionForeground": null, 866 | //"testing.message.error.lineBackground": null, 867 | //"testing.message.info.lineBackground": null, 868 | //"window.activeBorder": null, 869 | //"window.inactiveBorder": null 870 | }, 871 | "tokenColors": [ 872 | { 873 | "scope": [ 874 | "meta.embedded", 875 | "source.groovy.embedded", 876 | "string meta.image.inline.markdown", 877 | "variable.legacy.builtin.python" 878 | ], 879 | "settings": { 880 | "foreground": "#000000" 881 | } 882 | }, 883 | { 884 | "scope": "emphasis", 885 | "settings": { 886 | "fontStyle": "italic" 887 | } 888 | }, 889 | { 890 | "scope": "strong", 891 | "settings": { 892 | "fontStyle": "bold" 893 | } 894 | }, 895 | { 896 | "scope": "meta.diff.header", 897 | "settings": { 898 | "foreground": "#000080" 899 | } 900 | }, 901 | { 902 | "scope": "comment", 903 | "settings": { 904 | "foreground": "#008000" 905 | } 906 | }, 907 | { 908 | "scope": "constant.language", 909 | "settings": { 910 | "foreground": "#0000FF" 911 | } 912 | }, 913 | { 914 | "scope": [ 915 | "constant.numeric", 916 | "variable.other.enummember", 917 | "keyword.operator.plus.exponent", 918 | "keyword.operator.minus.exponent" 919 | ], 920 | "settings": { 921 | "foreground": "#098658" 922 | } 923 | }, 924 | { 925 | "scope": "constant.regexp", 926 | "settings": { 927 | "foreground": "#811F3F" 928 | } 929 | }, 930 | { 931 | "scope": "entity.name.tag", 932 | "settings": { 933 | "foreground": "#800000" 934 | } 935 | }, 936 | { 937 | "scope": "entity.name.selector", 938 | "settings": { 939 | "foreground": "#800000" 940 | } 941 | }, 942 | { 943 | "scope": "entity.other.attribute-name", 944 | "settings": { 945 | "foreground": "#E50000" 946 | } 947 | }, 948 | { 949 | "scope": [ 950 | "entity.other.attribute-name.class.css", 951 | "source.css entity.other.attribute-name.class", 952 | "entity.other.attribute-name.id.css", 953 | "entity.other.attribute-name.parent-selector.css", 954 | "entity.other.attribute-name.parent.less", 955 | "source.css entity.other.attribute-name.pseudo-class", 956 | "entity.other.attribute-name.pseudo-element.css", 957 | "source.css.less entity.other.attribute-name.id", 958 | "entity.other.attribute-name.scss" 959 | ], 960 | "settings": { 961 | "foreground": "#800000" 962 | } 963 | }, 964 | { 965 | "scope": "invalid", 966 | "settings": { 967 | "foreground": "#CD3131" 968 | } 969 | }, 970 | { 971 | "scope": "markup.underline", 972 | "settings": { 973 | "fontStyle": "underline" 974 | } 975 | }, 976 | { 977 | "scope": "markup.bold", 978 | "settings": { 979 | "foreground": "#000080", 980 | "fontStyle": "bold" 981 | } 982 | }, 983 | { 984 | "scope": "markup.heading", 985 | "settings": { 986 | "foreground": "#800000", 987 | "fontStyle": "bold" 988 | } 989 | }, 990 | { 991 | "scope": "markup.italic", 992 | "settings": { 993 | "fontStyle": "italic" 994 | } 995 | }, 996 | { 997 | "scope": "markup.strikethrough", 998 | "settings": { 999 | "fontStyle": "strikethrough" 1000 | } 1001 | }, 1002 | { 1003 | "scope": "markup.inserted", 1004 | "settings": { 1005 | "foreground": "#098658" 1006 | } 1007 | }, 1008 | { 1009 | "scope": "markup.deleted", 1010 | "settings": { 1011 | "foreground": "#A31515" 1012 | } 1013 | }, 1014 | { 1015 | "scope": "markup.changed", 1016 | "settings": { 1017 | "foreground": "#0451A5" 1018 | } 1019 | }, 1020 | { 1021 | "scope": [ 1022 | "punctuation.definition.quote.begin.markdown", 1023 | "punctuation.definition.list.begin.markdown" 1024 | ], 1025 | "settings": { 1026 | "foreground": "#0451A5" 1027 | } 1028 | }, 1029 | { 1030 | "scope": "markup.inline.raw", 1031 | "settings": { 1032 | "foreground": "#800000" 1033 | } 1034 | }, 1035 | { 1036 | "scope": "punctuation.definition.tag", 1037 | "settings": { 1038 | "foreground": "#800000" 1039 | } 1040 | }, 1041 | { 1042 | "scope": [ 1043 | "meta.preprocessor", 1044 | "entity.name.function.preprocessor" 1045 | ], 1046 | "settings": { 1047 | "foreground": "#0000FF" 1048 | } 1049 | }, 1050 | { 1051 | "scope": "meta.preprocessor.string", 1052 | "settings": { 1053 | "foreground": "#A31515" 1054 | } 1055 | }, 1056 | { 1057 | "scope": "meta.preprocessor.numeric", 1058 | "settings": { 1059 | "foreground": "#098658" 1060 | } 1061 | }, 1062 | { 1063 | "scope": "meta.structure.dictionary.key.python", 1064 | "settings": { 1065 | "foreground": "#0451A5" 1066 | } 1067 | }, 1068 | { 1069 | "scope": "storage", 1070 | "settings": { 1071 | "foreground": "#0000FF" 1072 | } 1073 | }, 1074 | { 1075 | "scope": "storage.type", 1076 | "settings": { 1077 | "foreground": "#0000FF" 1078 | } 1079 | }, 1080 | { 1081 | "scope": [ 1082 | "storage.modifier", 1083 | "keyword.operator.noexcept" 1084 | ], 1085 | "settings": { 1086 | "foreground": "#0000FF" 1087 | } 1088 | }, 1089 | { 1090 | "scope": [ 1091 | "string", 1092 | "meta.embedded.assembly" 1093 | ], 1094 | "settings": { 1095 | "foreground": "#A31515" 1096 | } 1097 | }, 1098 | { 1099 | "scope": [ 1100 | "string.comment.buffered.block.pug", 1101 | "string.quoted.pug", 1102 | "string.interpolated.pug", 1103 | "string.unquoted.plain.in.yaml", 1104 | "string.unquoted.plain.out.yaml", 1105 | "string.unquoted.block.yaml", 1106 | "string.quoted.single.yaml", 1107 | "string.quoted.double.xml", 1108 | "string.quoted.single.xml", 1109 | "string.unquoted.cdata.xml", 1110 | "string.quoted.double.html", 1111 | "string.quoted.single.html", 1112 | "string.unquoted.html", 1113 | "string.quoted.single.handlebars", 1114 | "string.quoted.double.handlebars" 1115 | ], 1116 | "settings": { 1117 | "foreground": "#0000FF" 1118 | } 1119 | }, 1120 | { 1121 | "scope": "string.regexp", 1122 | "settings": { 1123 | "foreground": "#811F3F" 1124 | } 1125 | }, 1126 | { 1127 | "scope": [ 1128 | "punctuation.definition.template-expression.begin", 1129 | "punctuation.definition.template-expression.end", 1130 | "punctuation.section.embedded" 1131 | ], 1132 | "settings": { 1133 | "foreground": "#0000FF" 1134 | } 1135 | }, 1136 | { 1137 | "scope": [ 1138 | "meta.template.expression" 1139 | ], 1140 | "settings": { 1141 | "foreground": "#000000" 1142 | } 1143 | }, 1144 | { 1145 | "scope": [ 1146 | "support.constant.property-value", 1147 | "support.constant.font-name", 1148 | "support.constant.media-type", 1149 | "support.constant.media", 1150 | "constant.other.color.rgb-value", 1151 | "constant.other.rgb-value", 1152 | "support.constant.color" 1153 | ], 1154 | "settings": { 1155 | "foreground": "#0451A5" 1156 | } 1157 | }, 1158 | { 1159 | "scope": [ 1160 | "support.type.vendored.property-name", 1161 | "support.type.property-name", 1162 | "source.css variable", 1163 | "source.coffee.embedded" 1164 | ], 1165 | "settings": { 1166 | "foreground": "#E50000" 1167 | } 1168 | }, 1169 | { 1170 | "scope": [ 1171 | "support.type.property-name.json" 1172 | ], 1173 | "settings": { 1174 | "foreground": "#0451A5" 1175 | } 1176 | }, 1177 | { 1178 | "scope": "keyword", 1179 | "settings": { 1180 | "foreground": "#0000FF" 1181 | } 1182 | }, 1183 | { 1184 | "scope": "keyword.control", 1185 | "settings": { 1186 | "foreground": "#0000FF" 1187 | } 1188 | }, 1189 | { 1190 | "scope": "keyword.operator", 1191 | "settings": { 1192 | "foreground": "#000000" 1193 | } 1194 | }, 1195 | { 1196 | "scope": [ 1197 | "keyword.operator.new", 1198 | "keyword.operator.expression", 1199 | "keyword.operator.cast", 1200 | "keyword.operator.sizeof", 1201 | "keyword.operator.alignof", 1202 | "keyword.operator.typeid", 1203 | "keyword.operator.alignas", 1204 | "keyword.operator.instanceof", 1205 | "keyword.operator.logical.python", 1206 | "keyword.operator.wordlike" 1207 | ], 1208 | "settings": { 1209 | "foreground": "#0000FF" 1210 | } 1211 | }, 1212 | { 1213 | "scope": "keyword.other.unit", 1214 | "settings": { 1215 | "foreground": "#098658" 1216 | } 1217 | }, 1218 | { 1219 | "scope": [ 1220 | "punctuation.section.embedded.begin.php", 1221 | "punctuation.section.embedded.end.php" 1222 | ], 1223 | "settings": { 1224 | "foreground": "#800000" 1225 | } 1226 | }, 1227 | { 1228 | "scope": "support.function.git-rebase", 1229 | "settings": { 1230 | "foreground": "#0451A5" 1231 | } 1232 | }, 1233 | { 1234 | "scope": "constant.sha.git-rebase", 1235 | "settings": { 1236 | "foreground": "#098658" 1237 | } 1238 | }, 1239 | { 1240 | "scope": [ 1241 | "storage.modifier.import.java", 1242 | "variable.language.wildcard.java", 1243 | "storage.modifier.package.java" 1244 | ], 1245 | "settings": { 1246 | "foreground": "#000000" 1247 | } 1248 | }, 1249 | { 1250 | "scope": "variable.language", 1251 | "settings": { 1252 | "foreground": "#0000FF" 1253 | } 1254 | }, 1255 | { 1256 | "scope": [ 1257 | "entity.name.function", 1258 | "support.function", 1259 | "support.constant.handlebars", 1260 | "source.powershell variable.other.member", 1261 | "entity.name.operator.custom-literal" 1262 | ], 1263 | "settings": { 1264 | "foreground": "#795E26" 1265 | } 1266 | }, 1267 | { 1268 | "scope": [ 1269 | "support.class", 1270 | "support.type", 1271 | "entity.name.type", 1272 | "entity.name.namespace", 1273 | "entity.other.attribute", 1274 | "entity.name.scope-resolution", 1275 | "entity.name.class", 1276 | "storage.type.numeric.go", 1277 | "storage.type.byte.go", 1278 | "storage.type.boolean.go", 1279 | "storage.type.string.go", 1280 | "storage.type.uintptr.go", 1281 | "storage.type.error.go", 1282 | "storage.type.rune.go", 1283 | "storage.type.cs", 1284 | "storage.type.generic.cs", 1285 | "storage.type.modifier.cs", 1286 | "storage.type.variable.cs", 1287 | "storage.type.annotation.java", 1288 | "storage.type.generic.java", 1289 | "storage.type.java", 1290 | "storage.type.object.array.java", 1291 | "storage.type.primitive.array.java", 1292 | "storage.type.primitive.java", 1293 | "storage.type.token.java", 1294 | "storage.type.groovy", 1295 | "storage.type.annotation.groovy", 1296 | "storage.type.parameters.groovy", 1297 | "storage.type.generic.groovy", 1298 | "storage.type.object.array.groovy", 1299 | "storage.type.primitive.array.groovy", 1300 | "storage.type.primitive.groovy" 1301 | ], 1302 | "settings": { 1303 | "foreground": "#267F99" 1304 | } 1305 | }, 1306 | { 1307 | "scope": [ 1308 | "meta.type.cast.expr", 1309 | "meta.type.new.expr", 1310 | "support.constant.math", 1311 | "support.constant.dom", 1312 | "support.constant.json", 1313 | "entity.other.inherited-class", 1314 | "punctuation.separator.namespace.ruby" 1315 | ], 1316 | "settings": { 1317 | "foreground": "#267F99" 1318 | } 1319 | }, 1320 | { 1321 | "scope": [ 1322 | "keyword.control", 1323 | "source.cpp keyword.operator.new", 1324 | "source.cpp keyword.operator.delete", 1325 | "keyword.other.using", 1326 | "keyword.other.directive.using", 1327 | "keyword.other.operator", 1328 | "entity.name.operator" 1329 | ], 1330 | "settings": { 1331 | "foreground": "#AF00DB" 1332 | } 1333 | }, 1334 | { 1335 | "scope": [ 1336 | "variable", 1337 | "meta.definition.variable.name", 1338 | "support.variable", 1339 | "entity.name.variable", 1340 | "constant.other.placeholder" 1341 | ], 1342 | "settings": { 1343 | "foreground": "#001080" 1344 | } 1345 | }, 1346 | { 1347 | "scope": [ 1348 | "variable.other.constant", 1349 | "variable.other.enummember" 1350 | ], 1351 | "settings": { 1352 | "foreground": "#0070C1" 1353 | } 1354 | }, 1355 | { 1356 | "scope": [ 1357 | "meta.object-literal.key" 1358 | ], 1359 | "settings": { 1360 | "foreground": "#001080" 1361 | } 1362 | }, 1363 | { 1364 | "scope": [ 1365 | "support.constant.property-value", 1366 | "support.constant.font-name", 1367 | "support.constant.media-type", 1368 | "support.constant.media", 1369 | "constant.other.color.rgb-value", 1370 | "constant.other.rgb-value", 1371 | "support.constant.color" 1372 | ], 1373 | "settings": { 1374 | "foreground": "#0451A5" 1375 | } 1376 | }, 1377 | { 1378 | "scope": [ 1379 | "punctuation.definition.group.regexp", 1380 | "punctuation.definition.group.assertion.regexp", 1381 | "punctuation.definition.character-class.regexp", 1382 | "punctuation.character.set.begin.regexp", 1383 | "punctuation.character.set.end.regexp", 1384 | "keyword.operator.negation.regexp", 1385 | "support.other.parenthesis.regexp" 1386 | ], 1387 | "settings": { 1388 | "foreground": "#D16969" 1389 | } 1390 | }, 1391 | { 1392 | "scope": [ 1393 | "constant.character.character-class.regexp", 1394 | "constant.other.character-class.set.regexp", 1395 | "constant.other.character-class.regexp", 1396 | "constant.character.set.regexp" 1397 | ], 1398 | "settings": { 1399 | "foreground": "#811F3F" 1400 | } 1401 | }, 1402 | { 1403 | "scope": "keyword.operator.quantifier.regexp", 1404 | "settings": { 1405 | "foreground": "#000000" 1406 | } 1407 | }, 1408 | { 1409 | "scope": [ 1410 | "keyword.operator.or.regexp", 1411 | "keyword.control.anchor.regexp" 1412 | ], 1413 | "settings": { 1414 | "foreground": "#EE0000" 1415 | } 1416 | }, 1417 | { 1418 | "scope": [ 1419 | "constant.character", 1420 | "constant.other.option" 1421 | ], 1422 | "settings": { 1423 | "foreground": "#0000FF" 1424 | } 1425 | }, 1426 | { 1427 | "scope": "constant.character.escape", 1428 | "settings": { 1429 | "foreground": "#EE0000" 1430 | } 1431 | }, 1432 | { 1433 | "scope": "entity.name.label", 1434 | "settings": { 1435 | "foreground": "#000000" 1436 | } 1437 | }, 1438 | { 1439 | "scope": "comment", 1440 | "settings": { 1441 | "foreground": "#93A1A1" 1442 | } 1443 | }, 1444 | { 1445 | "scope": "punctuation.definition.comment", 1446 | "settings": { 1447 | "foreground": "#93A1A1" 1448 | } 1449 | }, 1450 | { 1451 | "scope": "string", 1452 | "settings": { 1453 | "foreground": "#4CA49C" 1454 | } 1455 | }, 1456 | { 1457 | "scope": "meta.embedded.assembly", 1458 | "settings": { 1459 | "foreground": "#4CA49C" 1460 | } 1461 | }, 1462 | { 1463 | "scope": "keyword - keyword.operator", 1464 | "settings": { 1465 | "foreground": "#D24C15" 1466 | } 1467 | }, 1468 | { 1469 | "scope": "keyword.control", 1470 | "settings": { 1471 | "foreground": "#D24C15" 1472 | } 1473 | }, 1474 | { 1475 | "scope": "storage", 1476 | "settings": { 1477 | "foreground": "#D24C15" 1478 | } 1479 | }, 1480 | { 1481 | "scope": "storage.type", 1482 | "settings": { 1483 | "foreground": "#D24C15" 1484 | } 1485 | }, 1486 | { 1487 | "scope": "constant.numeric", 1488 | "settings": { 1489 | "foreground": "#B68900" 1490 | } 1491 | }, 1492 | { 1493 | "scope": "entity.name.type", 1494 | "settings": { 1495 | "foreground": "#0664A7D0" 1496 | } 1497 | }, 1498 | { 1499 | "scope": "entity.name.class", 1500 | "settings": { 1501 | "foreground": "#0664A7D0" 1502 | } 1503 | }, 1504 | { 1505 | "scope": "support.type", 1506 | "settings": { 1507 | "foreground": "#0664A7D0" 1508 | } 1509 | }, 1510 | { 1511 | "scope": "support.class", 1512 | "settings": { 1513 | "foreground": "#0664A7D0" 1514 | } 1515 | }, 1516 | { 1517 | "scope": "entity.name.function", 1518 | "settings": { 1519 | "foreground": "#0664A7D0" 1520 | } 1521 | }, 1522 | { 1523 | "scope": "support.function", 1524 | "settings": { 1525 | "foreground": "#0664A7D0" 1526 | } 1527 | }, 1528 | { 1529 | "scope": "variable", 1530 | "settings": { 1531 | "foreground": "#0664A7D0" 1532 | } 1533 | }, 1534 | { 1535 | "scope": "entity.name.variable", 1536 | "settings": { 1537 | "foreground": "#0664A7D0" 1538 | } 1539 | }, 1540 | { 1541 | "scope": [ 1542 | "punctuation.definition.array.begin", 1543 | "punctuation.definition.array.end", 1544 | "punctuation.definition.dictionary.begin", 1545 | "punctuation.definition.dictionary.end", 1546 | "punctuation.definition.tag", 1547 | "entity.name.tag", 1548 | "entity.other.attribute-name" 1549 | ], 1550 | "settings": { 1551 | "foreground": "#0664A7D0" 1552 | } 1553 | }, 1554 | { 1555 | "scope": [ 1556 | "keyword", 1557 | "keyword.operator" 1558 | ], 1559 | "settings": { 1560 | "foreground": "#D24C15" 1561 | } 1562 | }, 1563 | { 1564 | "scope": [ 1565 | "entity.name.type.class.tsx" 1566 | ], 1567 | "settings": { 1568 | "foreground": "#AE6900" 1569 | } 1570 | }, 1571 | { 1572 | "scope": [ 1573 | "meta.embedded" 1574 | ], 1575 | "settings": { 1576 | "foreground": "#577572" 1577 | } 1578 | }, 1579 | { 1580 | "scope": [ 1581 | "comment.block", 1582 | "comment.block.documentation", 1583 | "comment.line", 1584 | "comment.line.character", 1585 | "comment.line.double-dash", 1586 | "comment.line.double-slash", 1587 | "comment.line.number-sign", 1588 | "comment.line.percentage" 1589 | ], 1590 | "settings": { 1591 | "foreground": "#93A1A1" 1592 | } 1593 | }, 1594 | { 1595 | "scope": [ 1596 | "source.bsl", 1597 | "punctuation.bracket.begin.bsl", 1598 | "punctuation.bracket.end.bsl" 1599 | ], 1600 | "settings": { 1601 | "foreground": "#0664A7D0" 1602 | } 1603 | }, 1604 | { 1605 | "scope": [ 1606 | "keyword.control.sdbl", 1607 | "support.function.sdbl", 1608 | "support.type.sdbl" 1609 | ], 1610 | "settings": { 1611 | "foreground": "#546AD8" 1612 | } 1613 | }, 1614 | { 1615 | "scope": [ 1616 | "constant.other.date.bsl" 1617 | ], 1618 | "settings": { 1619 | "foreground": "#6E6E6E" 1620 | } 1621 | }, 1622 | { 1623 | "scope": [ 1624 | "constant.language.bsl", 1625 | "keyword.operator.logical.bsl" 1626 | ], 1627 | "settings": { 1628 | "foreground": "#D24C15" 1629 | } 1630 | }, 1631 | { 1632 | "scope": [ 1633 | "keyword.other.preprocessor.bsl", 1634 | "keyword.other.section.bsl", 1635 | "keyword.control.import.bsl", 1636 | "keyword.control.native.bsl", 1637 | "storage.modifier.directive.bsl", 1638 | "storage.type.annotation.bsl", 1639 | "entity.name.section.bsl" 1640 | ], 1641 | "settings": { 1642 | "foreground": "#AE6900" 1643 | } 1644 | }, 1645 | { 1646 | "scope": [ 1647 | "source.sdbl", 1648 | "string.quoted.double.bsl", 1649 | "constant.numeric.sdbl", 1650 | "constant.language.sdbl", 1651 | "string.quoted.double.sdbl", 1652 | "keyword.operator.sdbl", 1653 | "keyword.operator.logical.sdbl", 1654 | "keyword.operator.comparison.sdbl", 1655 | "keyword.control.conditional.sdbl", 1656 | "keyword.operator.arithmetic.sdbl", 1657 | "variable.parameter.sdbl" 1658 | ], 1659 | "settings": { 1660 | "foreground": "#4CA49C" 1661 | } 1662 | }, 1663 | { 1664 | "scope": [], 1665 | "settings": { 1666 | "foreground": "#93A1A1" 1667 | } 1668 | }, 1669 | { 1670 | "scope": [ 1671 | "source.xbsl", 1672 | "storage.modifier.import", 1673 | "storage.type.xbsl", 1674 | "variable.parameter.method.xbsl" 1675 | ], 1676 | "settings": { 1677 | "foreground": "#0664A7D0" 1678 | } 1679 | }, 1680 | { 1681 | "scope": [ 1682 | "support.function.sql.xbsl" 1683 | ], 1684 | "settings": { 1685 | "foreground": "#546AD8" 1686 | } 1687 | }, 1688 | { 1689 | "scope": [], 1690 | "settings": { 1691 | "foreground": "#484545" 1692 | } 1693 | }, 1694 | { 1695 | "scope": [ 1696 | "constant.language.xbsl", 1697 | "keyword.operator.logical.xbsl" 1698 | ], 1699 | "settings": { 1700 | "foreground": "#D24C15" 1701 | } 1702 | }, 1703 | { 1704 | "scope": [ 1705 | "keyword.control.import.xbsl" 1706 | ], 1707 | "settings": { 1708 | "foreground": "#AE6900" 1709 | } 1710 | }, 1711 | { 1712 | "scope": [ 1713 | "keyword.control.less.xbsl", 1714 | "keyword.sql.xbsl", 1715 | "string.quoted.double.xbsl", 1716 | "string.other.query.xbsl", 1717 | "string.query.xbsl", 1718 | "constant.character.escape.xbsl", 1719 | "variable.parameter.xbsl", 1720 | "punctuation.definition.string.begin.bsl", 1721 | "punctuation.definition.string.begin.bsl" 1722 | ], 1723 | "settings": { 1724 | "foreground": "#4CA49C" 1725 | } 1726 | }, 1727 | { 1728 | "scope": [], 1729 | "settings": { 1730 | "foreground": "#2E902E" 1731 | } 1732 | }, 1733 | { 1734 | "scope": [ 1735 | "keyword.other.DML.II.sql", 1736 | "keyword.other.DML.sql", 1737 | "keyword.other.DDL.create.II.sql", 1738 | "keyword.other.LUW.sql", 1739 | "keyword.other.alias.sql", 1740 | "keyword.other.authorization.sql", 1741 | "keyword.other.cascade.sql", 1742 | "keyword.other.create.sql", 1743 | "keyword.other.data-integrity.sql", 1744 | "keyword.other.object-comments.sql", 1745 | "keyword.other.order.sql", 1746 | "keyword.other.table.sql", 1747 | "entity.name.function.sql" 1748 | ], 1749 | "settings": { 1750 | "foreground": "#D24C15" 1751 | } 1752 | }, 1753 | { 1754 | "scope": [ 1755 | "string.interpolated.sql", 1756 | "string.other.quoted.brackets.sql", 1757 | "string.quoted.double.sql", 1758 | "string.quoted.other.backtick.sql", 1759 | "string.quoted.single.sql", 1760 | "string.regexp.modr.sql", 1761 | "string.regexp.sql" 1762 | ], 1763 | "settings": { 1764 | "foreground": "#4CA49C" 1765 | } 1766 | }, 1767 | { 1768 | "scope": [ 1769 | "comment.block", 1770 | "comment.line.double-dash.sql" 1771 | ], 1772 | "settings": { 1773 | "foreground": "#93A1A1" 1774 | } 1775 | }, 1776 | { 1777 | "scope": [ 1778 | "source.sql", 1779 | "keyword.operator.comparison.sql", 1780 | "keyword.operator.concatenator.sql", 1781 | "keyword.operator.math.sql", 1782 | "keyword.operator.star.sql", 1783 | "storage.modifier.sql", 1784 | "storage.type.sql", 1785 | "constant.character.escape.slash.sql", 1786 | "constant.character.escape.sql", 1787 | "constant.numeric.sql", 1788 | "constant.other.database-name.sql", 1789 | "constant.other.table-name.sql", 1790 | "keyword.other.sql" 1791 | ], 1792 | "settings": { 1793 | "foreground": "#0664A7D0" 1794 | } 1795 | }, 1796 | { 1797 | "scope": [ 1798 | "support.type.property-name.json", 1799 | "punctuation.separator.array.json", 1800 | "punctuation.separator.dictionary.pair.json.comments", 1801 | "punctuation.separator.dictionary.key-value.json.comments" 1802 | ], 1803 | "settings": { 1804 | "foreground": "#0664A7D0" 1805 | } 1806 | }, 1807 | { 1808 | "scope": [ 1809 | "string.quoted.double.json" 1810 | ], 1811 | "settings": { 1812 | "foreground": "#4CA49C" 1813 | } 1814 | }, 1815 | { 1816 | "scope": [ 1817 | "constant.language.json", 1818 | "constant.numeric.json" 1819 | ], 1820 | "settings": { 1821 | "foreground": "#AB7700" 1822 | } 1823 | }, 1824 | { 1825 | "scope": [ 1826 | "text.xml" 1827 | ], 1828 | "settings": { 1829 | "foreground": "#AB7700" 1830 | } 1831 | }, 1832 | { 1833 | "scope": [ 1834 | "markup.heading" 1835 | ], 1836 | "settings": { 1837 | "foreground": "#AE6900" 1838 | } 1839 | }, 1840 | { 1841 | "scope": [ 1842 | "markup.inline.raw" 1843 | ], 1844 | "settings": { 1845 | "foreground": "#4CA49C" 1846 | } 1847 | }, 1848 | { 1849 | "scope": [ 1850 | "markup.bold" 1851 | ], 1852 | "settings": { 1853 | "foreground": "#0F75BE" 1854 | } 1855 | }, 1856 | { 1857 | "scope": [ 1858 | "keyword.language.gherkin.feature", 1859 | "keyword.language.gherkin.feature.scenario" 1860 | ], 1861 | "settings": { 1862 | "foreground": "#484545" 1863 | } 1864 | }, 1865 | { 1866 | "scope": [ 1867 | "keyword.language.gherkin.feature.step" 1868 | ], 1869 | "settings": { 1870 | "foreground": "#D24C15" 1871 | } 1872 | }, 1873 | { 1874 | "scope": [ 1875 | "keyword.control.cucumber.table" 1876 | ], 1877 | "settings": { 1878 | "foreground": "#4CA49C" 1879 | } 1880 | }, 1881 | { 1882 | "scope": [ 1883 | "text.gherkin.feature" 1884 | ], 1885 | "settings": { 1886 | "foreground": "#0664A7D0" 1887 | } 1888 | }, 1889 | { 1890 | "scope": [ 1891 | "keyword.control.conditional.batchfile", 1892 | "keyword.other.special-method.batchfile", 1893 | "keyword.command.batchfile", 1894 | "keyword.operator.logical.batchfile" 1895 | ], 1896 | "settings": { 1897 | "foreground": "#D24C15" 1898 | } 1899 | }, 1900 | { 1901 | "scope": [ 1902 | "comment.line.colon.batchfile", 1903 | "comment.line.rem.batchfile" 1904 | ], 1905 | "settings": { 1906 | "foreground": "#93A1A1" 1907 | } 1908 | }, 1909 | { 1910 | "scope": [ 1911 | "source.batchfile", 1912 | "keyword.command.rem.batchfile", 1913 | "keyword.control.repeat.batchfile", 1914 | "keyword.control.repeat.do.batchfile", 1915 | "keyword.control.repeat.in.batchfile", 1916 | "keyword.control.statement.batchfile", 1917 | "keyword.operator.arithmetic.batchfile", 1918 | "keyword.operator.assignment.augmented.batchfile", 1919 | "keyword.operator.assignment.batchfile", 1920 | "keyword.operator.at.batchfile", 1921 | "keyword.operator.comparison.batchfile", 1922 | "keyword.operator.conditional.batchfile", 1923 | "keyword.operator.pipe.batchfile", 1924 | "keyword.operator.redirection.batchfile" 1925 | ], 1926 | "settings": { 1927 | "foreground": "#0664A7D0" 1928 | } 1929 | }, 1930 | { 1931 | "scope": [ 1932 | "source.shell" 1933 | ], 1934 | "settings": { 1935 | "foreground": "#0664A7D0" 1936 | } 1937 | }, 1938 | { 1939 | "scope": [ 1940 | "source.java" 1941 | ], 1942 | "settings": { 1943 | "foreground": "#0664A7D0" 1944 | } 1945 | }, 1946 | { 1947 | "scope": "token.info-token", 1948 | "settings": { 1949 | "foreground": "#316BCD" 1950 | } 1951 | }, 1952 | { 1953 | "scope": "token.warn-token", 1954 | "settings": { 1955 | "foreground": "#CD9731" 1956 | } 1957 | }, 1958 | { 1959 | "scope": "token.error-token", 1960 | "settings": { 1961 | "foreground": "#CD3131" 1962 | } 1963 | }, 1964 | { 1965 | "scope": "token.debug-token", 1966 | "settings": { 1967 | "foreground": "#800080" 1968 | } 1969 | } 1970 | ] 1971 | } --------------------------------------------------------------------------------