├── .gitignore ├── .vscodeignore ├── .gitattributes ├── codercoder-dark-css.jpg ├── codercoder-dark-js.jpg ├── codercoder-dark-html.jpg ├── profile-square-150px.jpg ├── CHANGELOG.md ├── .vscode └── launch.json ├── package.json ├── README.md ├── vsc-extension-quickstart.md └── themes └── Coder Coder Dark Theme-color-theme.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix 3 | -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | .gitignore 4 | vsc-extension-quickstart.md 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set default behavior to automatically normalize line endings. 2 | * text=auto 3 | 4 | -------------------------------------------------------------------------------- /codercoder-dark-css.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/codercoder-dark-theme/HEAD/codercoder-dark-css.jpg -------------------------------------------------------------------------------- /codercoder-dark-js.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/codercoder-dark-theme/HEAD/codercoder-dark-js.jpg -------------------------------------------------------------------------------- /codercoder-dark-html.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/codercoder-dark-theme/HEAD/codercoder-dark-html.jpg -------------------------------------------------------------------------------- /profile-square-150px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodercoder/codercoder-dark-theme/HEAD/profile-square-150px.jpg -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to the "codercoder-dark-theme" extension will be documented in this file. 4 | 5 | Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. 6 | 7 | ## [Unreleased] 8 | 9 | - Initial release 10 | -------------------------------------------------------------------------------- /.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 | "--extensionDevelopmentPath=${workspaceFolder}" 14 | ] 15 | } 16 | ] 17 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "codercoder-dark-theme", 3 | "displayName": "Coder Coder Dark", 4 | "description": "The VS Code theme you've seen in all my YouTube videos!", 5 | "version": "1.5.3", 6 | "publisher": "CoderCoder", 7 | "icon": "profile-square-150px.jpg", 8 | "repository": { 9 | "type": "git", 10 | "url": "https://github.com/thecodercoder/codercoder-dark-theme" 11 | }, 12 | "keywords": [ 13 | "theme", 14 | "dark theme", 15 | "coder coder", 16 | "codercoder", 17 | "thecodercoder", 18 | "coder coder dark" 19 | ], 20 | "engines": { 21 | "vscode": "^1.52.0" 22 | }, 23 | "categories": [ 24 | "Themes" 25 | ], 26 | "contributes": { 27 | "themes": [ 28 | { 29 | "label": "Coder Coder Dark Theme", 30 | "uiTheme": "vs-dark", 31 | "path": "./themes/Coder Coder Dark Theme-color-theme.json" 32 | } 33 | ] 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Coder Coder Dark 2 | 3 | Here is the VS Code theme that I use in all my [YouTube videos](https://www.youtube.com/thecodercoder). I like dark themes so it's dark :) 4 | 5 | I took inspiration from the [Community Material](https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-community-material-theme) and the [Dark+ Material](https://marketplace.visualstudio.com/items?itemName=vangware.dark-plus-material) themes. 6 | 7 | 💥 If you like this theme and would like to support me making cool stuff on here and YouTube, you can [sponsor me](https://github.com/sponsors/thecodercoder) on GitHub! 8 | 9 | Will be maintaining this as I have time, thanks for your understanding! 🙏🏽 10 | 11 | ## Screenshots 12 | 13 | ### HTML 14 | 15 | ![HTML screenshot](https://raw.githubusercontent.com/thecodercoder/codercoder-dark-theme/main/codercoder-dark-html.jpg) 16 | 17 | ### CSS 18 | 19 | ![Sass screenshot](https://raw.githubusercontent.com/thecodercoder/codercoder-dark-theme/main/codercoder-dark-css.jpg) 20 | 21 | ### JavaScript 22 | 23 | ![JavaScript screenshot](https://raw.githubusercontent.com/thecodercoder/codercoder-dark-theme/main/codercoder-dark-js.jpg) 24 | -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- 1 | # Welcome to your VS Code Extension 2 | 3 | ## What's in the folder 4 | 5 | * This folder contains all of the files necessary for your color theme extension. 6 | * `package.json` - this is the manifest file that defines the location of the theme file and specifies the base theme of the theme. 7 | * `themes/Coder Coder Dark Theme-color-theme.json` - the color theme definition file. 8 | 9 | ## Get up and running straight away 10 | 11 | * Press `F5` to open a new window with your extension loaded. 12 | * Open `File > Preferences > Color Themes` and pick your color theme. 13 | * Open a file that has a language associated. The languages' configured grammar will tokenize the text and assign 'scopes' to the tokens. To examine these scopes, invoke the `Inspect TM Scopes` command from the Command Palette (`Ctrl+Shift+P` or `Cmd+Shift+P` on Mac) . 14 | 15 | ## Make changes 16 | 17 | * Changes to the theme file are automatically applied to the Extension Development Host window. 18 | 19 | ## Adopt your theme to Visual Studio Code 20 | 21 | * The token colorization is done based on standard TextMate themes. Colors are matched against one or more scopes. 22 | 23 | To learn more about scopes and how they're used, check out the [color theme](https://code.visualstudio.com/api/extension-guides/color-theme) documentation. 24 | 25 | ## Install your extension 26 | 27 | * To start using your extension with Visual Studio Code copy it into the `/.vscode/extensions` folder and restart Code. 28 | * To share your extension with the world, read on https://code.visualstudio.com/docs about publishing an extension. 29 | -------------------------------------------------------------------------------- /themes/Coder Coder Dark Theme-color-theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Coder Coder Dark Theme", 3 | "type": "dark", 4 | "colors": { 5 | "activityBar.background": "#0e0d1a", 6 | "activityBar.border": "#5966cc50", 7 | "activityBar.foreground": "#dddfe9", 8 | "activityBarBadge.background": "#8c97ea", 9 | "activityBarBadge.foreground": "#0e0d1a", 10 | "badge.background": "#0e0d1a30", 11 | "badge.foreground": "#5966cc", 12 | // 13 | "editorBracketHighlight.foreground1": "#5966cc", 14 | "editorIndentGuide.activeBackground1": "#5966cc", 15 | "editorIndentGuide.background1": "#5966ccbb", 16 | // 17 | "editorBracketHighlight.foreground2": "#ffd129", 18 | "editorIndentGuide.activeBackground2": "#ffd12999", 19 | "editorIndentGuide.background2": "#ffd12960", 20 | // 21 | "editorBracketHighlight.foreground3": "#efefef", 22 | "editorIndentGuide.activeBackground3": "#efefefcc", 23 | "editorIndentGuide.background3": "#efefef80", 24 | // 25 | "editorBracketHighlight.foreground4": "#dd00ff", 26 | "editorIndentGuide.activeBackground4": "#dd00ff99", 27 | "editorIndentGuide.background4": "#dd00ff60", 28 | // 29 | "editorBracketHighlight.foreground6": "#1ff4cd", 30 | "editorIndentGuide.activeBackground6": "#1ff4cdbb", 31 | "editorIndentGuide.background6": "#1ff4cd60", 32 | // 33 | "editorBracketHighlight.foreground5": "#48bfff", 34 | "editorIndentGuide.activeBackground5": "#48bfffee", 35 | "editorIndentGuide.background5": "#48bfff99", 36 | // 37 | "breadcrumb.activeSelectionForeground": "#5966cc", 38 | "breadcrumb.background": "#0e0d1a", 39 | "breadcrumb.focusForeground": "#dddfe9", 40 | "breadcrumb.foreground": "#6a77d8", 41 | "breadcrumbPicker.background": "#0e0d1a", 42 | "button.background": "#5966cc50", 43 | "contrastBorder": "#5966cc50", 44 | "debugToolBar.background": "#0e0d1a", 45 | "diffEditor.insertedTextBackground": "#c800be15", 46 | "diffEditor.removedTextBackground": "#01d64820", 47 | "dropdown.background": "#0e0d1a", 48 | "dropdown.border": "#ffffff10", 49 | "editor.background": "#0e0d1a", 50 | "editor.findMatchBackground": "#0e0d1a", 51 | "editor.findMatchBorder": "#5966cc", 52 | "editor.findMatchHighlightBackground": "#5966cc93", 53 | "editor.findMatchHighlightBorder": "#ffffff30", 54 | "editor.foreground": "#dddfe9", 55 | "editor.lineHighlightBackground": "#0e0d1a50", 56 | //"editor.selectionBorder": "#ff0000", 57 | "editor.selectionBackground": "#8c97ea30", 58 | "editor.selectionHighlightBackground": "#5966cc6b", 59 | "editorBracketMatch.background": "#0e0d1a", 60 | "editorBracketMatch.border": "#eb58e37f", 61 | "editorCursor.foreground": "#eb58e3", 62 | "editorError.foreground": "#ffe553", 63 | "editorGroup.border": "#5966cc50", 64 | "editorGroupHeader.tabsBackground": "#0e0d1a", 65 | "editorGutter.addedBackground": "#c800be60", 66 | "editorGutter.deletedBackground": "#01d64860", 67 | "editorGutter.modifiedBackground": "#8c97ea60", 68 | "editorHoverWidget.background": "#0e0d1a", 69 | "editorHoverWidget.border": "#ffffff10", 70 | "editorInfo.foreground": "#8c97ea70", 71 | "editorLineNumber.foreground": "#5966ccc0", 72 | "editorLineNumber.activeForeground": "#8c97ea", 73 | "editorLink.activeForeground": "#dddfe9", 74 | "editorMarkerNavigation.background": "#dddfe905", 75 | "editorOverviewRuler.border": "#0e0d1a", 76 | "editorOverviewRuler.errorForeground": "#01d64840", 77 | "editorOverviewRuler.findMatchForeground": "#5966cc50", 78 | "editorOverviewRuler.infoForeground": "#8c97ea40", 79 | "editorOverviewRuler.warningForeground": "#ff000070", 80 | "editorRuler.foreground": "#383b3d", 81 | "editorSuggestWidget.background": "#0e0d1a", 82 | "editorSuggestWidget.border": "#ffffff10", 83 | "editorSuggestWidget.foreground": "#dddfe9", 84 | "editorSuggestWidget.highlightForeground": "#eb58e3", 85 | "editorSuggestWidget.selectedBackground": "#5966cc20", 86 | "editorWarning.foreground": "#c800be", 87 | "editorWhitespace.foreground": "#dddfe940", 88 | "editorWidget.background": "#0e0d1a", 89 | "editorWidget.border": "#eb58e3", 90 | "editorWidget.resizeBorder": "#5966cc", 91 | "extensionButton.prominentBackground": "#c800be90", 92 | "extensionButton.prominentHoverBackground": "#01d648", 93 | "focusBorder": "#ffffff00", 94 | "gitDecoration.conflictingResourceForeground": "#eb58e3", 95 | "gitDecoration.deletedResourceForeground": "#eb58e3", 96 | "gitDecoration.ignoredResourceForeground": "#8c97ea", 97 | "gitDecoration.modifiedResourceForeground": "#8c97ea", 98 | "gitDecoration.untrackedResourceForeground": "#8c97ea", 99 | "input.background": "#1d1e38", 100 | "input.border": "#ffffff10", 101 | "input.foreground": "#dddfe9", 102 | "input.placeholderForeground": "#dddfe960", 103 | "inputOption.activeBackground": "#dddfe930", 104 | "inputOption.activeBorder": "#dddfe930", 105 | "inputValidation.errorBorder": "#01d64850", 106 | "inputValidation.infoBorder": "#8c97ea50", 107 | "inputValidation.warningBorder": "#eb58e350", 108 | "list.activeSelectionBackground": "#0e0d1a", 109 | "list.activeSelectionForeground": "#5966cc", 110 | "list.focusBackground": "#1d1e38", 111 | "list.focusForeground": "#8c97ea", 112 | "list.highlightForeground": "#5966cc", 113 | "list.hoverBackground": "#5966cc30", 114 | "list.hoverForeground": "#ffffff", 115 | "list.inactiveSelectionBackground": "#0e0d1a30", 116 | "list.inactiveSelectionForeground": "#5966cc", 117 | "listFilterWidget.background": "#0e0d1a30", 118 | "listFilterWidget.noMatchesOutline": "#0e0d1a30", 119 | "listFilterWidget.outline": "#0e0d1a30", 120 | "menu.background": "#0e0d1af8", 121 | "menu.foreground": "#dddfe9", 122 | "menu.border": "#5966cc50", 123 | "menu.selectionBackground": "#5966cc30", // "#1b184b", 124 | "menu.selectionBorder": "#0e0d1a30", 125 | "menu.selectionForeground": "#dddfe9", //"#dddfe9", 126 | "menu.separatorBackground": "#5966cc9f", 127 | "menubar.selectionBackground": "#1b184b", 128 | "menubar.selectionBorder": "#5966cc50", 129 | "menubar.selectionForeground": "#dddfe9", 130 | "notificationLink.foreground": "#5966cc", 131 | "notifications.background": "#0e0d1a", 132 | "notifications.foreground": "#dddfe9", 133 | "panel.background": "#0e0d1a", 134 | "panel.border": "#5966cc50", 135 | "panelTitle.activeBorder": "#5966cc", 136 | "panelTitle.activeForeground": "#ffffff", 137 | "panelTitle.inactiveForeground": "#dddfe9", 138 | "peekView.border": "#0e0d1a30", 139 | "peekViewEditor.background": "#dddfe905", 140 | "peekViewEditor.matchHighlightBackground": "#5966cc50", 141 | "peekViewEditorGutter.background": "#dddfe905", 142 | "peekViewResult.background": "#dddfe905", 143 | "peekViewResult.matchHighlightBackground": "#5966cc50", 144 | "peekViewResult.selectionBackground": "#5966cc70", 145 | "peekViewTitle.background": "#dddfe905", 146 | "peekViewTitleDescription.foreground": "#dddfe960", 147 | "pickerGroup.foreground": "#5966cc", 148 | "progressBar.background": "#5966cc", 149 | "quickInputList.focusBackground": "#5966cc30", 150 | "quickInputList.focusForeground": "#b6bdf2", 151 | "scrollbar.shadow": "#0e0d1a00", 152 | "scrollbarSlider.activeBackground": "#5966cc", 153 | "scrollbarSlider.background": "#5966cc", 154 | "scrollbarSlider.hoverBackground": "#5966cc", 155 | "selection.background": "#5966cc", 156 | "settings.checkboxBackground": "#0e0d1a", 157 | "settings.checkboxForeground": "#dddfe9", 158 | "settings.dropdownBackground": "#0e0d1a", 159 | "settings.dropdownForeground": "#dddfe9", 160 | "settings.headerForeground": "#5966cc", 161 | "settings.modifiedItemIndicator": "#5966cc", 162 | "settings.numberInputBackground": "#0e0d1a", 163 | "settings.numberInputForeground": "#dddfe9", 164 | "settings.textInputBackground": "#0e0d1a", 165 | "settings.textInputForeground": "#dddfe9", 166 | "sideBar.background": "#0e0d1a", 167 | "sideBar.border": "#5966cc50", 168 | "sideBar.foreground": "#8c97ea", 169 | "sideBarSectionHeader.background": "#0e0d1a", 170 | "sideBarSectionHeader.border": "#0e0d1a60", 171 | "sideBarSectionHeader.foreground": "#8c97ea", 172 | "sideBarTitle.foreground": "#dddfe9", 173 | "statusBar.background": "#2c2772", 174 | "statusBar.border": "#0e0d1a60", 175 | "statusBar.debuggingBackground": "#eb58e3", 176 | "statusBar.debuggingForeground": "#ffffff", 177 | "statusBar.foreground": "#c4cbff", 178 | "statusBar.noFolderBackground": "#0e0d1a", 179 | "statusBarItem.hoverBackground": "#5966cc20", 180 | "statusBarItem.remoteBackground": "#5966cc", 181 | "statusBarItem.remoteForeground": "#0e0d1a", 182 | "tab.activeBorder": "#5966cc", 183 | "tab.activeBackground": "#5966cc20", 184 | "tab.activeForeground": "#ffffff", 185 | "tab.activeModifiedBorder": "#5966cc", 186 | "tab.border": "#5966cc90", 187 | "tab.inactiveBackground": "#0e0d1a", 188 | "tab.inactiveForeground": "#5966cc", 189 | "tab.hoverBackground": "#ffffff00", 190 | "tab.hoverBorder": "#5966cc", 191 | "tab.hoverForeground": "#ffffff", 192 | "tab.unfocusedHoverBackground": "#1b184ba0", 193 | "tab.unfocusedHoverForeground": "#dddfe9a0", 194 | "tab.unfocusedActiveBorder": "#5966cc", 195 | "tab.unfocusedActiveForeground": "#dddfe9", 196 | "terminal.ansiBlack": "#0e0d1a", 197 | "terminal.ansiBlue": "#8c97ea", 198 | "terminal.ansiBrightBlack": "#5966cc", 199 | "terminal.ansiBrightBlue": "#8c97ea", 200 | "terminal.ansiBrightCyan": "#23deff", 201 | "terminal.ansiBrightGreen": "#17f648", 202 | "terminal.ansiBrightMagenta": "#eb58e3", 203 | "terminal.ansiBrightRed": "#fa1313", 204 | "terminal.ansiBrightWhite": "#ffffff", 205 | "terminal.ansiBrightYellow": "#ffffff", 206 | "terminal.ansiCyan": "#8c97ea", 207 | "terminal.ansiGreen": "#00c82b", 208 | "terminal.ansiMagenta": "#eb58e3", 209 | "terminal.ansiRed": "#fa1313", 210 | "terminal.ansiWhite": "#ffffff", 211 | "terminal.ansiYellow": "#ffe553", 212 | "terminalCursor.background": "#0e0d1a", 213 | "terminalCursor.foreground": "#eb58e3", 214 | "textLink.activeForeground": "#dddfe9", 215 | "textLink.foreground": "#5966cc", 216 | "titleBar.activeBackground": "#0e0d1a", 217 | "titleBar.activeForeground": "#dddfe9", 218 | "titleBar.border": "#5966cc50", 219 | "titleBar.inactiveBackground": "#0e0d1a", 220 | "titleBar.inactiveForeground": "#8c97ea", 221 | "tree.indentGuidesStroke": "#383b3d", 222 | "widget.shadow": "#0e0d1a30", 223 | "minimap.background": "#141325", 224 | "minimapSlider.background": "#5966cc80", 225 | "minimapSlider.hoverBackground": "#5966cca0", 226 | "minimapSlider.activeBackground": "#5966ccb0", 227 | "minimapGutter.addedBackground": "#eb58e3", 228 | "minimapGutter.deletedBackground": "#eb58e3", 229 | "minimapGutter.modifiedBackground": "#eb58e3", 230 | "window.activeBorder": "#0e0d1a", 231 | //"activityBar.activeBorder": "#dddfe9", 232 | //"activityBar.dropBorder": "#dddfe9", 233 | //"activityBar.inactiveForeground": "#dddfe966", 234 | //"button.foreground": "#ffffff", 235 | //"button.hoverBackground": "#98a0c850", 236 | //"button.secondaryBackground": "#3a3d41", 237 | //"button.secondaryForeground": "#ffffff", 238 | //"button.secondaryHoverBackground": "#45494e", 239 | //"charts.blue": "#8c97ea70", 240 | //"charts.foreground": "#cccccc", 241 | //"charts.green": "#89d185", 242 | //"charts.lines": "#cccccc80", 243 | //"charts.orange": "#d18616", 244 | //"charts.purple": "#b180d7", 245 | //"charts.red": "#01d64870", 246 | //"charts.yellow": "#eb58e370", 247 | //"checkbox.background": "#0e0d1a", 248 | //"checkbox.border": "#ffffff10", 249 | //"checkbox.foreground": "#f0f0f0", 250 | //"debugConsole.errorForeground": "#f48771", 251 | //"debugConsole.infoForeground": "#8c97ea70", 252 | //"debugConsole.sourceForeground": "#cccccc", 253 | //"debugConsole.warningForeground": "#eb58e370", 254 | //"debugConsoleInputIcon.foreground": "#cccccc", 255 | //"debugExceptionWidget.background": "#420b0d", 256 | //"debugExceptionWidget.border": "#a31515", 257 | //"debugIcon.breakpointCurrentStackframeForeground": "#eb58e3", 258 | //"debugIcon.breakpointDisabledForeground": "#848484", 259 | //"debugIcon.breakpointForeground": "#e51400", 260 | //"debugIcon.breakpointStackframeForeground": "#89d185", 261 | //"debugIcon.breakpointUnverifiedForeground": "#848484", 262 | //"debugIcon.continueForeground": "#75beff", 263 | //"debugIcon.disconnectForeground": "#f48771", 264 | //"debugIcon.pauseForeground": "#75beff", 265 | //"debugIcon.restartForeground": "#89d185", 266 | //"debugIcon.startForeground": "#89d185", 267 | //"debugIcon.stepBackForeground": "#75beff", 268 | //"debugIcon.stepIntoForeground": "#75beff", 269 | //"debugIcon.stepOutForeground": "#75beff", 270 | //"debugIcon.stepOverForeground": "#75beff", 271 | //"debugIcon.stopForeground": "#f48771", 272 | //"debugTokenExpression.boolean": "#4e94ce", 273 | //"debugTokenExpression.error": "#f48771", 274 | //"debugTokenExpression.name": "#c586c0", 275 | //"debugTokenExpression.number": "#b5cea8", 276 | //"debugTokenExpression.string": "#ce9178", 277 | //"debugTokenExpression.value": "#cccccc99", 278 | //"debugView.exceptionLabelBackground": "#6c2022", 279 | //"debugView.exceptionLabelForeground": "#cccccc", 280 | //"debugView.stateLabelBackground": "#88888844", 281 | //"debugView.stateLabelForeground": "#cccccc", 282 | //"debugView.valueChangedHighlight": "#569cd6", 283 | //"descriptionForeground": "#ccccccb3", 284 | //"diffEditor.diagonalFill": "#cccccc33", 285 | //"dropdown.foreground": "#f0f0f0", 286 | //"editor.findRangeHighlightBackground": "#3a3d4166", 287 | //"editor.focusedStackFrameHighlightBackground": "#7abd7a4d", 288 | //"editor.foldBackground": "#717cb418", 289 | //"editor.hoverHighlightBackground": "#264f7840", 290 | //"editor.inactiveSelectionBackground": "#717cb428", 291 | //"editor.lineHighlightBorder": "#282828", 292 | //"editor.linkedEditingBackground": "#eb58e34d", 293 | //"editor.rangeHighlightBackground": "#ffffff0b", 294 | //"editor.snippetFinalTabstopHighlightBorder": "#525252", 295 | //"editor.snippetTabstopHighlightBackground": "#7c7c7c4d", 296 | //"editor.stackFrameHighlightBackground": "#ffff0033", 297 | //"editor.symbolHighlightBackground": "#0e0d1a50", 298 | //"editor.wordHighlightBackground": "#575757b8", 299 | //"editor.wordHighlightStrongBackground": "#004972b8", 300 | //"editorActiveLineNumber.foreground": "#c6c6c6", 301 | //"editorCodeLens.foreground": "#999999", 302 | //"editorGroup.dropBackground": "#53595d80", 303 | //"editorGroupHeader.noTabsBackground": "#0e0d1a", 304 | //"editorGutter.background": "#0e0d1a", 305 | //"editorGutter.commentRangeForeground": "#c5c5c5", 306 | //"editorGutter.foldingControlForeground": "#c5c5c5", 307 | //"editorHint.foreground": "#eeeeeeb3", 308 | //"editorHoverWidget.foreground": "#cccccc", 309 | //"editorHoverWidget.statusBarBackground": "#12141f", 310 | //"editorLightBulb.foreground": "#eb58e3", 311 | //"editorLightBulbAutoFix.foreground": "#75beff", 312 | //"editorMarkerNavigationError.background": "#01d64870", 313 | //"editorMarkerNavigationInfo.background": "#8c97ea70", 314 | //"editorMarkerNavigationWarning.background": "#eb58e370", 315 | //"editorOverviewRuler.addedForeground": "#c800be3a", 316 | //"editorOverviewRuler.bracketMatchForeground": "#a0a0a0", 317 | //"editorOverviewRuler.commonContentForeground": "#60606066", 318 | //"editorOverviewRuler.currentContentForeground": "#40c8ae80", 319 | //"editorOverviewRuler.deletedForeground": "#01d6483a", 320 | //"editorOverviewRuler.incomingContentForeground": "#40a6ff80", 321 | //"editorOverviewRuler.modifiedForeground": "#8c97ea3a", 322 | //"editorOverviewRuler.rangeHighlightForeground": "#007acc99", 323 | //"editorOverviewRuler.selectionHighlightForeground": "#a0a0a0cc", 324 | //"editorOverviewRuler.wordHighlightForeground": "#a0a0a0cc", 325 | //"editorOverviewRuler.wordHighlightStrongForeground": "#c0a0c0cc", 326 | //"editorPane.background": "#0e0d1a", 327 | //"editorUnnecessaryCode.opacity": "#0e0d1aaa", 328 | //"editorWidget.foreground": "#cccccc", 329 | //"errorForeground": "#f48771", 330 | //"extensionBadge.remoteBackground": "#5966cc", 331 | //"extensionBadge.remoteForeground": "#0e0d1a", 332 | //"extensionButton.prominentForeground": "#ffffff", 333 | //"foreground": "#cccccc", 334 | //"gitDecoration.addedResourceForeground": "#81b88b", 335 | //"gitDecoration.stageDeletedResourceForeground": "#c74e39", 336 | //"gitDecoration.stageModifiedResourceForeground": "#e2c08d", 337 | //"gitDecoration.submoduleResourceForeground": "#8db9e2", 338 | //"icon.foreground": "#c5c5c5", 339 | //"imagePreview.border": "#80808059", 340 | //"inputOption.activeForeground": "#ffffff", 341 | //"inputValidation.errorBackground": "#5a1d1d", 342 | //"inputValidation.infoBackground": "#063b49", 343 | //"inputValidation.warningBackground": "#352a05", 344 | //"list.deemphasizedForeground": "#8c8c8c", 345 | //"list.dropBackground": "#dddfe920", 346 | //"list.errorForeground": "#f88070", 347 | //"list.filterMatchBackground": "#0e0d1a50", 348 | //"list.filterMatchBorder": "#ffffff30", 349 | //"list.invalidItemForeground": "#b89500", 350 | "list.warningForeground": "#eb58e3", 351 | //"merge.commonContentBackground": "#60606029", 352 | //"merge.commonHeaderBackground": "#60606066", 353 | //"merge.currentContentBackground": "#40c8ae33", 354 | //"merge.currentHeaderBackground": "#40c8ae80", 355 | //"merge.incomingContentBackground": "#40a6ff33", 356 | //"merge.incomingHeaderBackground": "#40a6ff80", 357 | //"minimap.errorHighlight": "#ff1212b3", 358 | //"minimap.findMatchHighlight": "#d18616", 359 | //"minimap.selectionHighlight": "#264f78", 360 | //"minimap.warningHighlight": "#eb58e370", 361 | //"minimapGutter.addedBackground": "#587c0c", 362 | //"minimapGutter.deletedBackground": "#94151b", 363 | //"minimapGutter.modifiedBackground": "#0c7d9d", 364 | //"minimapSlider.activeBackground": "#5966cc80", 365 | //"minimapSlider.background": "#dddfe910", 366 | //"minimapSlider.hoverBackground": "#dddfe908", 367 | //"notebook.cellBorderColor": "#0e0d1a30", 368 | //"notebook.cellInsertionIndicator": "#ffffff00", 369 | //"notebook.cellStatusBarItemHoverBackground": "#ffffff26", 370 | //"notebook.cellToolbarSeparator": "#80808059", 371 | //"notebook.focusedCellBorder": "#ffffff00", 372 | //"notebook.focusedEditorBorder": "#ffffff00", 373 | //"notebook.focusedRowBorder": "#ffffff1f", 374 | //"notebook.outputContainerBackgroundColor": "#0e0d1a30", 375 | //"notebook.rowHoverBackground": "#80808012", 376 | //"notebook.selectedCellBorder": "#0e0d1a30", 377 | //"notebook.symbolHighlightBackground": "#ffffff0b", 378 | //"notebookScrollbarSlider.activeBackground": "#5966cc", 379 | //"notebookScrollbarSlider.background": "#dddfe920", 380 | //"notebookScrollbarSlider.hoverBackground": "#dddfe910", 381 | //"notebookStatusErrorIcon.foreground": "#f48771", 382 | //"notebookStatusRunningIcon.foreground": "#cccccc", 383 | //"notebookStatusSuccessIcon.foreground": "#89d185", 384 | //"notificationCenterHeader.background": "#131622", 385 | //"notifications.border": "#131622", 386 | //"notificationsErrorIcon.foreground": "#01d64870", 387 | //"notificationsInfoIcon.foreground": "#8c97ea70", 388 | //"notificationsWarningIcon.foreground": "#eb58e370", 389 | //"panel.dropBorder": "#ffffff", 390 | //"panelSection.border": "#0e0d1a60", 391 | //"panelSection.dropBackground": "#53595d80", 392 | //"panelSectionHeader.background": "#80808033", 393 | //"peekViewResult.fileForeground": "#ffffff", 394 | //"peekViewResult.lineForeground": "#bbbbbb", 395 | //"peekViewResult.selectionForeground": "#ffffff", 396 | //"peekViewTitleLabel.foreground": "#ffffff", 397 | //"pickerGroup.border": "#3f3f46", 398 | //"problemsErrorIcon.foreground": "#01d64870", 399 | //"problemsInfoIcon.foreground": "#8c97ea70", 400 | //"problemsWarningIcon.foreground": "#eb58e370", 401 | //"quickInput.background": "#0e0d1a", 402 | //"quickInput.foreground": "#cccccc", 403 | //"quickInputTitle.background": "#ffffff1b", 404 | //"scm.providerBorder": "#454545", 405 | //"searchEditor.findMatchBackground": "#0e0d1a35", 406 | //"searchEditor.findMatchBorder": "#ffffff20", 407 | //"searchEditor.textInputBorder": "#ffffff10", 408 | //"settings.checkboxBorder": "#ffffff10", 409 | //"settings.dropdownBorder": "#ffffff10", 410 | //"settings.dropdownListBorder": "#eb58e3", 411 | //"settings.focusedRowBackground": "#80808024", 412 | //"settings.numberInputBorder": "#ffffff10", 413 | //"settings.textInputBorder": "#ffffff10", 414 | //"sideBar.dropBackground": "#53595d80", 415 | //"sideBarSectionHeader.foreground": "#5966cc", 416 | //"statusBar.debuggingBorder": "#0e0d1a60", 417 | //"statusBar.noFolderBorder": "#0e0d1a60", 418 | //"statusBar.noFolderForeground": "#453f9e", 419 | //"statusBarItem.activeBackground": "#ffffff2e", 420 | //"statusBarItem.errorBackground": "#c72e0f", 421 | //"statusBarItem.errorForeground": "#ffffff", 422 | //"statusBarItem.prominentBackground": "#0e0d1a80", 423 | //"statusBarItem.prominentForeground": "#453f9e", 424 | //"statusBarItem.prominentHoverBackground": "#0e0d1a4d", 425 | //"symbolIcon.arrayForeground": "#cccccc", 426 | //"symbolIcon.booleanForeground": "#cccccc", 427 | //"symbolIcon.classForeground": "#ee9d28", 428 | //"symbolIcon.colorForeground": "#cccccc", 429 | //"symbolIcon.constantForeground": "#cccccc", 430 | //"symbolIcon.constructorForeground": "#b180d7", 431 | //"symbolIcon.enumeratorForeground": "#ee9d28", 432 | //"symbolIcon.enumeratorMemberForeground": "#75beff", 433 | //"symbolIcon.eventForeground": "#ee9d28", 434 | //"symbolIcon.fieldForeground": "#75beff", 435 | //"symbolIcon.fileForeground": "#cccccc", 436 | //"symbolIcon.folderForeground": "#cccccc", 437 | //"symbolIcon.functionForeground": "#b180d7", 438 | //"symbolIcon.interfaceForeground": "#75beff", 439 | //"symbolIcon.keyForeground": "#cccccc", 440 | //"symbolIcon.keywordForeground": "#cccccc", 441 | //"symbolIcon.methodForeground": "#b180d7", 442 | //"symbolIcon.moduleForeground": "#cccccc", 443 | //"symbolIcon.namespaceForeground": "#cccccc", 444 | //"symbolIcon.nullForeground": "#cccccc", 445 | //"symbolIcon.numberForeground": "#cccccc", 446 | //"symbolIcon.objectForeground": "#cccccc", 447 | //"symbolIcon.operatorForeground": "#cccccc", 448 | //"symbolIcon.packageForeground": "#cccccc", 449 | //"symbolIcon.propertyForeground": "#cccccc", 450 | //"symbolIcon.referenceForeground": "#cccccc", 451 | //"symbolIcon.snippetForeground": "#cccccc", 452 | //"symbolIcon.stringForeground": "#cccccc", 453 | //"symbolIcon.structForeground": "#cccccc", 454 | //"symbolIcon.textForeground": "#cccccc", 455 | //"symbolIcon.typeParameterForeground": "#cccccc", 456 | //"symbolIcon.unitForeground": "#cccccc", 457 | //"symbolIcon.variableForeground": "#75beff", 458 | //"tab.activeBackground": "#0e0d1a", 459 | //"tab.inactiveModifiedBorder": "#5966cc80", 460 | //"tab.lastPinnedBorder": "#383b3d", 461 | //"tab.unfocusedActiveBackground": "#0e0d1a", 462 | //"tab.unfocusedActiveModifiedBorder": "#5966cc80", 463 | //"tab.unfocusedInactiveBackground": "#0e0d1a", 464 | //"tab.unfocusedInactiveForeground": "#5966cc80", 465 | //"tab.unfocusedInactiveModifiedBorder": "#5966cc40", 466 | //"terminal.border": "#0e0d1a60", 467 | //"terminal.foreground": "#cccccc", 468 | //"terminal.selectionBackground": "#ffffff40", 469 | //"textBlockQuote.background": "#7f7f7f1a", 470 | //"textBlockQuote.border": "#007acc80", 471 | //"textCodeBlock.background": "#0a0a0a66", 472 | //"textPreformat.foreground": "#d7ba7d", 473 | //"textSeparator.foreground": "#ffffff2e", 474 | //"activityBar.activeBackground": null, 475 | //"activityBar.activeFocusBorder": null, 476 | //"contrastActiveBorder": null, 477 | //"contrastBorder": null, 478 | //"debugToolBar.border": null, 479 | //"diffEditor.border": null, 480 | //"diffEditor.insertedTextBorder": null, 481 | //"diffEditor.removedTextBorder": null, 482 | //"dropdown.listBackground": null, 483 | //"editor.findRangeHighlightBorder": null, 484 | //"editor.rangeHighlightBorder": null, 485 | //"editor.selectionForeground": null, 486 | "editor.selectionHighlightBorder": "#8c97eaf0" 487 | //"editor.snippetFinalTabstopHighlightBackground": null, 488 | //"editor.snippetTabstopHighlightBorder": null, 489 | //"editor.symbolHighlightBorder": null, 490 | //"editor.wordHighlightBorder": null, 491 | //"editor.wordHighlightStrongBorder": null, 492 | //"editorCursor.background": null, 493 | //"editorError.background": null, 494 | //"editorError.border": null, 495 | //"editorGroup.background": null, 496 | //"editorGroup.emptyBackground": null, 497 | //"editorGroup.focusedEmptyBorder": null, 498 | //"editorGroupHeader.border": null, 499 | //"editorGroupHeader.tabsBorder": null, 500 | //"editorHint.border": null, 501 | //"editorInfo.background": null, 502 | //"editorInfo.border": null, 503 | //"editorOverviewRuler.background": null, 504 | //"editorUnnecessaryCode.border": null, 505 | //"editorWarning.background": null, 506 | //"editorWarning.border": null, 507 | //"inputValidation.errorForeground": null, 508 | //"inputValidation.infoForeground": null, 509 | //"inputValidation.warningForeground": null, 510 | //"list.inactiveFocusBackground": null, 511 | //"menu.border": null, 512 | //"merge.border": null, 513 | //"notebook.cellHoverBackground": null, 514 | //"notebook.focusedCellBackground": null, 515 | //"notificationCenter.border": null, 516 | //"notificationCenterHeader.foreground": null, 517 | //"notificationToast.border": null, 518 | //"panelInput.border": null, 519 | //"panelSectionHeader.border": null, 520 | //"panelSectionHeader.foreground": null, 521 | //"peekViewEditor.matchHighlightBorder": null, 522 | //"sash.hoverBorder": null, 523 | //"tab.activeBorderTop": null, 524 | //"tab.hoverBackground": null, 525 | //"tab.hoverBorder": null, 526 | //"tab.hoverForeground": null, 527 | //"tab.unfocusedActiveBorderTop": null, 528 | //"tab.unfocusedHoverBackground": null, 529 | //"tab.unfocusedHoverBorder": null, 530 | //"tab.unfocusedHoverForeground": null, 531 | //"terminal.background": null, 532 | //"walkThrough.embeddedEditorBackground": null, 533 | //"welcomePage.background": null, 534 | //"welcomePage.buttonBackground": null, 535 | //"welcomePage.buttonHoverBackground": null, 536 | //"window.activeBorder": null, 537 | //"window.inactiveBorder": null 538 | }, 539 | "tokenColors": [ 540 | { 541 | "scope": [ 542 | "variable", 543 | "string constant.other.placeholder", 544 | "invalid.deprecated", 545 | "keyword", 546 | "storage.modifier" 547 | ], 548 | "settings": { 549 | "foreground": "#eb58e3" 550 | } 551 | }, 552 | { 553 | "scope": [ 554 | "variable.other", 555 | ], 556 | "settings": { 557 | "foreground": "#6a77d8" 558 | } 559 | }, 560 | { 561 | "scope": [ 562 | "storage.type", 563 | ], 564 | "settings": { 565 | "foreground": "#c800be" 566 | } 567 | }, 568 | { 569 | "scope": [ 570 | "variable", 571 | "string constant.other.placeholder", 572 | "entity.name.function", 573 | "punctuation.definition.interpolation.end.bracket.curly.scss", 574 | "punctuation.definition.interpolation.begin.bracket.curly.scss" 575 | ], 576 | "settings": { 577 | "fontStyle": "italic" 578 | } 579 | }, 580 | { 581 | "scope": [ 582 | "punctuation.definition.interpolation.end.bracket.curly.scss", 583 | "punctuation.definition.interpolation.begin.bracket.curly.scss" 584 | ], 585 | "settings": { 586 | "foreground": "#c800be" 587 | } 588 | }, 589 | { 590 | "scope": [ 591 | "constant.other.php" 592 | ], 593 | "settings": { 594 | "foreground": "#eb58e3" 595 | } 596 | }, 597 | { 598 | "scope": [ 599 | "constant.other.color" 600 | ], 601 | "settings": { 602 | "foreground": "#FFFFFF" 603 | } 604 | }, 605 | { 606 | "scope": [ 607 | "invalid", 608 | "invalid.illegal" 609 | ], 610 | "settings": { 611 | "foreground": "#01d648" 612 | } 613 | }, 614 | { 615 | "scope": [ 616 | "Keyword", 617 | "Storage" 618 | ], 619 | "settings": { 620 | "fontStyle": "italic" 621 | } 622 | }, 623 | { 624 | "scope": [ 625 | "keyword.control", 626 | "constant.other.color", 627 | "punctuation", 628 | "punctuation.separator.inheritance.php", 629 | "punctuation.section.embedded", 630 | "keyword.other.template", 631 | "keyword.other.substitution", 632 | "entity.name.tag.reference.scss" 633 | ], 634 | "settings": { 635 | "foreground": "#adadad" 636 | } 637 | }, 638 | { 639 | "scope": [ 640 | "punctuation.definition.tag", 641 | "punctuation.definition.tag.html", 642 | ], 643 | "settings": { 644 | "foreground": "#6d6f7c" 645 | } 646 | }, 647 | { 648 | "scope": [ 649 | "keyword.control.at-rule", 650 | "punctuation.terminator.rule.css", 651 | "keyword.control.operator", 652 | "punctuation.definition.entity.css", 653 | "keyword.operator.assignment.js", 654 | "punctuation.separator.comma.js", 655 | "punctuation.definition.string.begin.js", 656 | "punctuation.definition.string.end.js", 657 | "punctuation.definition.binding-pattern.object.js" 658 | ], 659 | "settings": { 660 | "foreground": "#dddfe9" 661 | } 662 | }, 663 | { 664 | "scope": [ 665 | "punctuation.definition", 666 | "string.quoted.single.scss" 667 | ], 668 | "settings": { 669 | "foreground": "#a7a8af" 670 | } 671 | }, 672 | { 673 | "scope": [ 674 | "keyword.control" 675 | ], 676 | "settings": { 677 | "fontStyle": "bold" 678 | } 679 | }, 680 | { 681 | "scope": [ 682 | "comment.line.scss", 683 | "comment.line.double-slash.js", 684 | "punctuation.definition.comment.scss", 685 | "punctuation.definition.comment.js", 686 | "punctuation.definition.comment.html", 687 | "comment.block.html" 688 | ], 689 | "settings": { 690 | "foreground": "#6d6f7c" 691 | } 692 | }, 693 | // HTML 694 | { 695 | "scope": [ 696 | "text.html.derivative" 697 | ], 698 | "settings": { 699 | "foreground": "#a7a8af" 700 | } 701 | }, 702 | { 703 | "scope": [ 704 | "entity.name.tag", 705 | "meta.tag.sgml", 706 | "markup.deleted.git_gutter" 707 | ], 708 | "settings": { 709 | "foreground": "#dddfe9" 710 | } 711 | }, 712 | { 713 | "scope": [ 714 | "entity.name.tag.html" 715 | ], 716 | "settings": { 717 | "fontStyle": "bold" 718 | } 719 | }, 720 | { 721 | "scope": [ 722 | "variable.parameter.js", 723 | "variable.parameter.keyframe-list.css" 724 | ], 725 | "settings": { 726 | "foreground": "#eb58e3" 727 | } 728 | }, 729 | { 730 | "scope": [ 731 | "variable.other.object.js", 732 | "storage.type.js", 733 | "string.other.link.title.markdown", 734 | "variable.other.readwrite.js", 735 | "variable.other.property.js", 736 | "entity.name.type.module.js" 737 | ], 738 | "settings": { 739 | "foreground": "#6a77d8", 740 | "fontStyle": "" 741 | } 742 | }, 743 | { 744 | "scope": [ 745 | "string", 746 | "string.quoted.double.html", 747 | "variable.other.constant.js", 748 | "string.quoted.double.json", 749 | "markup.fenced_code.block.markdown", 750 | "markup.inline.raw.string.markdown", 751 | "variable.function", 752 | "keyword.other.special-method", 753 | "markup.bold", 754 | "markup.bold.markdown", 755 | "markup.italic.markdown", 756 | "meta.class-method.js entity.name.function.js", 757 | "variable.function.constructor", 758 | "entity.name.tag.other.html", 759 | "entity.name.tag.block.any.html", 760 | "source.sass keyword.control" 761 | ], 762 | "settings": { 763 | "foreground": "#8c97ea" 764 | } 765 | }, 766 | { 767 | "scope": [ 768 | "variable.other.object.property.ts", 769 | "meta.function-call.ts", 770 | "meta.var.expr.ts" 771 | ], 772 | "settings": { 773 | "foreground": "#8c97ea" 774 | } 775 | }, 776 | { 777 | "scope": [ 778 | "entity.name.function", 779 | ], 780 | "settings": { 781 | "foreground": "#6a77d8" 782 | } 783 | }, 784 | { 785 | "scope": [ 786 | "variable.other.object.property.tsx", 787 | ], 788 | "settings": { 789 | "foreground": "#c800be" 790 | } 791 | }, 792 | { 793 | "scope": [ 794 | "punctuation.definition.string.begin.html", 795 | "punctuation.definition.string.end.html" 796 | ], 797 | "settings": { 798 | "foreground": "#c4cbff" 799 | } 800 | }, 801 | { 802 | "scope": [ 803 | "support.other.variable", 804 | "string.other.link", 805 | "markup.table" 806 | ], 807 | "settings": { 808 | "foreground": "#dddfe9" 809 | } 810 | }, 811 | { 812 | "scope": [ 813 | "constant.numeric", 814 | "constant.language", 815 | "constant.character", 816 | "constant.escape", 817 | "keyword.other.unit", 818 | "keyword.other", 819 | "punctuation.separator.key-value.html" 820 | ], 821 | "settings": { 822 | "foreground": "#eb58e3" 823 | } 824 | }, 825 | { 826 | "scope": [ 827 | "variable.parameter.function.language.special", 828 | "variable.parameter" 829 | ], 830 | "settings": { 831 | "foreground": "#dddfe9" 832 | } 833 | }, 834 | { 835 | "scope": [ 836 | "constant.other.symbol", 837 | "constant.other.key", 838 | "entity.other.inherited-class", 839 | "keyword.other.unit", 840 | "markup.heading", 841 | "markup.inserted.git_gutter", 842 | "meta.group.braces.curly constant.other.object.key.js string.unquoted.label.js" 843 | ], 844 | "settings": { 845 | "foreground": "#c800be", 846 | "fontStyle": "" 847 | } 848 | }, 849 | { 850 | "scope": [ 851 | "entity.name", 852 | "support.type", 853 | "support.class", 854 | "support.orther.namespace.use.php", 855 | "meta.use.php", 856 | "support.other.namespace.php", 857 | "markup.changed.git_gutter", 858 | "support.type.sys-types", 859 | "entity.other.attribute-name.html" 860 | ], 861 | "settings": { 862 | "foreground": "#6e7bda" 863 | } 864 | }, 865 | { 866 | "scope": [ 867 | "support.type" 868 | ], 869 | "settings": { 870 | "foreground": "#B2CCD6" 871 | } 872 | }, 873 | { 874 | "scope": [ 875 | "source.css support.type.property-name", 876 | "source.sass support.type.property-name", 877 | "source.scss support.type.property-name", 878 | "source.less support.type.property-name", 879 | "source.stylus support.type.property-name", 880 | "source.postcss support.type.property-name" 881 | ], 882 | "settings": { 883 | "foreground": "#6a77d8" 884 | } 885 | }, 886 | { 887 | "scope": [ 888 | "entity.name.module.js", 889 | "variable.import.parameter.js", 890 | "variable.other.class.js" 891 | ], 892 | "settings": { 893 | "foreground": "#01d648" 894 | } 895 | }, 896 | { 897 | "scope": [ 898 | "entity.name.method.js", 899 | "tag.decorator.js entity.name.tag.js", 900 | "tag.decorator.js punctuation.definition.tag.js" 901 | ], 902 | "settings": { 903 | "foreground": "#8c97ea", 904 | "fontStyle": "italic" 905 | } 906 | }, 907 | { 908 | "scope": [ 909 | "entity.other.attribute-name", 910 | "support.function" 911 | ], 912 | "settings": { 913 | "foreground": "#eb58e3" 914 | } 915 | }, 916 | { 917 | "scope": [ 918 | "entity.other.attribute-name.id", 919 | "entity.other.attribute-name.class", 920 | "entity.other.attribute-name.pseudo-class", 921 | "entity.name.tag.css", 922 | "keyword.control.conditional.js", 923 | "support.constant", 924 | "entity.other.attribute-name.html", 925 | "string.quoted.single.js", 926 | "storage.type.function.js", 927 | "storage.type.function.arrow.ts", 928 | "meta.object-literal.key" 929 | ], 930 | "settings": { 931 | "foreground": "#d2d3d9" 932 | } 933 | }, 934 | { 935 | "scope": [ 936 | "keyword.control.import.ts" 937 | ], 938 | "settings": { 939 | "foreground": "#999aa1" 940 | } 941 | }, 942 | { 943 | "scope": [ 944 | "keyword.control.from.ts", 945 | "variable.parameter.ts" 946 | ], 947 | "settings": { 948 | "foreground": "#dddfe9" 949 | } 950 | }, 951 | { 952 | "scope": [ 953 | "markup.inserted" 954 | ], 955 | "settings": { 956 | "foreground": "#c800be" 957 | } 958 | }, 959 | { 960 | "scope": [ 961 | "markup.deleted" 962 | ], 963 | "settings": { 964 | "foreground": "#01d648" 965 | } 966 | }, 967 | { 968 | "scope": [ 969 | "markup.changed" 970 | ], 971 | "settings": { 972 | "foreground": "#eb58e3" 973 | } 974 | }, 975 | { 976 | "scope": [ 977 | "string.regexp" 978 | ], 979 | "settings": { 980 | "foreground": "#c4cbff" 981 | } 982 | }, 983 | { 984 | "scope": [ 985 | "constant.character.escape" 986 | ], 987 | "settings": { 988 | "foreground": "#c4cbff" 989 | } 990 | }, 991 | { 992 | "scope": [ 993 | "*url*", 994 | "*link*", 995 | "*uri*" 996 | ], 997 | "settings": { 998 | "fontStyle": "underline" 999 | } 1000 | }, 1001 | { 1002 | "scope": [ 1003 | "source.js constant.other.object.key.js string.unquoted.label.js" 1004 | ], 1005 | "settings": { 1006 | "foreground": "#dddfe9", 1007 | "fontStyle": "italic" 1008 | } 1009 | }, 1010 | { 1011 | "scope": [ 1012 | "support.type.property-name.json" 1013 | ], 1014 | "settings": { 1015 | "foreground": "#dddfe9" 1016 | } 1017 | }, 1018 | { 1019 | "scope": [ 1020 | "text.html.markdown", 1021 | "punctuation.definition.list_item.markdown" 1022 | ], 1023 | "settings": { 1024 | "foreground": "#dddfe9" 1025 | } 1026 | }, 1027 | { 1028 | "scope": [ 1029 | "text.html.markdown markup.inline.raw.markdown" 1030 | ], 1031 | "settings": { 1032 | "foreground": "#eb58e3" 1033 | } 1034 | }, 1035 | { 1036 | "scope": [ 1037 | "text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown" 1038 | ], 1039 | "settings": { 1040 | "foreground": "#5966cc50" 1041 | } 1042 | }, 1043 | { 1044 | "scope": [ 1045 | "text.html.markdown meta.dummy.line-break" 1046 | ], 1047 | "settings": {} 1048 | }, 1049 | { 1050 | "scope": [ 1051 | "markdown.heading", 1052 | "markup.heading | markup.heading entity.name", 1053 | "markup.heading.markdown punctuation.definition.heading.markdown", 1054 | "entity.name.section.markdown" 1055 | ], 1056 | "settings": { 1057 | "foreground": "#6a77d8", 1058 | "fontStyle": "bold" 1059 | } 1060 | }, 1061 | { 1062 | "scope": [ 1063 | "markup.underline" 1064 | ], 1065 | "settings": { 1066 | "foreground": "#8c97ea", 1067 | "fontStyle": "underline" 1068 | } 1069 | }, 1070 | { 1071 | "scope": [ 1072 | "markup.strike" 1073 | ], 1074 | "settings": { 1075 | "fontStyle": "" 1076 | } 1077 | }, 1078 | { 1079 | "scope": [ 1080 | "markup.quote punctuation.definition.blockquote.markdown" 1081 | ], 1082 | "settings": { 1083 | "foreground": "#5966cc50" 1084 | } 1085 | }, 1086 | { 1087 | "scope": [ 1088 | "markup.quote" 1089 | ], 1090 | "settings": { 1091 | "fontStyle": "italic" 1092 | } 1093 | }, 1094 | { 1095 | "scope": [ 1096 | "string.other.link.description.title.markdown" 1097 | ], 1098 | "settings": { 1099 | "foreground": "#eb58e3" 1100 | } 1101 | }, 1102 | { 1103 | "scope": [ 1104 | "constant.other.reference.link.markdown" 1105 | ], 1106 | "settings": { 1107 | "foreground": "#eb58e3" 1108 | } 1109 | }, 1110 | { 1111 | "scope": [ 1112 | "markup.raw.block" 1113 | ], 1114 | "settings": { 1115 | "foreground": "#eb58e3" 1116 | } 1117 | }, 1118 | { 1119 | "scope": [ 1120 | "punctuation.definition.raw.markdown", 1121 | "punctuation.definition.markdown" 1122 | ], 1123 | "settings": { 1124 | "foreground": "#c4cbff" 1125 | } 1126 | }, 1127 | { 1128 | "scope": [ 1129 | "variable.language.fenced.markdown" 1130 | ], 1131 | "settings": { 1132 | "foreground": "#5966cc" 1133 | } 1134 | }, 1135 | { 1136 | "scope": [ 1137 | "meta.separator" 1138 | ], 1139 | "settings": { 1140 | "foreground": "#a7a8af", 1141 | "fontStyle": "bold" 1142 | } 1143 | }, 1144 | { 1145 | "scope": "token.info-token", 1146 | "settings": { 1147 | "foreground": "#5966cc" 1148 | } 1149 | }, 1150 | { 1151 | "scope": "token.warn-token", 1152 | "settings": { 1153 | "foreground": "#eb58e3" 1154 | } 1155 | }, 1156 | { 1157 | "scope": "token.error-token", 1158 | "settings": { 1159 | "foreground": "#ff293b" 1160 | } 1161 | }, 1162 | { 1163 | "scope": "token.debug-token", 1164 | "settings": { 1165 | "foreground": "#c4cbff" 1166 | } 1167 | } 1168 | ] 1169 | } --------------------------------------------------------------------------------