├── .gitignore ├── .vscodeignore ├── icon.png ├── logo.png ├── preview.png ├── site ├── logo.png ├── preview.png └── index.html ├── vaporwaveisnotdead.png ├── CHANGELOG.md ├── .vscode └── launch.json ├── README.md ├── LICENSE ├── package.json └── themes ├── vaporwave-color-theme.json ├── vaporwave-bold-color-theme.json ├── vaporwave-italic-color-theme.json └── vaporwave-bordered-color-theme.json /.gitignore: -------------------------------------------------------------------------------- 1 | *.vsix 2 | .DS_Store -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | .gitignore 4 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-fifo/vaporwave-theme-vscode/HEAD/icon.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-fifo/vaporwave-theme-vscode/HEAD/logo.png -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-fifo/vaporwave-theme-vscode/HEAD/preview.png -------------------------------------------------------------------------------- /site/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-fifo/vaporwave-theme-vscode/HEAD/site/logo.png -------------------------------------------------------------------------------- /site/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-fifo/vaporwave-theme-vscode/HEAD/site/preview.png -------------------------------------------------------------------------------- /vaporwaveisnotdead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/this-fifo/vaporwave-theme-vscode/HEAD/vaporwaveisnotdead.png -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | ## 0.1.0 4 | 5 | - Initial release 6 | 7 | ## 0.1.1 8 | 9 | - Add bordered theme _(currently for italics only)_ 10 | 11 | ## 0.1.2 12 | 13 | - Replace preview image to show bordered theme + [Customize UI](https://marketplace.visualstudio.com/items?itemName=iocave.customize-ui) 14 | -------------------------------------------------------------------------------- /.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 | "runtimeExecutable": "${execPath}", 13 | "args": [ 14 | "--extensionDevelopmentPath=${workspaceFolder}" 15 | ] 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | L O G O 3 |

4 |

5 | AESTHETICS 6 |

7 |

8 | longlivevaporwave 9 |

10 | 11 | --- 12 | 13 |

14 | preview 15 |

16 | 17 | ## Installation 18 | 19 | 1. Open the **Extensions** sidebar in VS Code 20 | 2. Search for `Vaporwave Theme` 21 | 3. Click **Install** 22 | 4. Open the **Command Palette** with `Ctrl+Shift+P` or `⇧⌘P` 23 | 5. Select **Preferences: Color Theme** and choose vaporwave. 24 | 25 |
26 | This theme is heavily inspired by Horizon 27 | and Synthwave 28 | 31 |
32 | 33 | ## License 34 | 35 | [MIT](LICENSE) © [Filipe Herculano](https://github.com/this-fifo) 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Filipe Herculano 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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaporwave-theme-vscode", 3 | "author": "Filipe Herculano ", 4 | "publisher": "this-fifo", 5 | "license": "MIT", 6 | "icon": "icon.png", 7 | "displayName": "vaporwave", 8 | "description": "AESTHETICS ( ⧉ ⦣ ⧉ )", 9 | "version": "0.1.2", 10 | "engines": { 11 | "vscode": "^1.41.0" 12 | }, 13 | "categories": [ 14 | "Themes" 15 | ], 16 | "keywords": [ 17 | "theme", 18 | "dark", 19 | "vaporwave", 20 | "aesthetics" 21 | ], 22 | "contributes": { 23 | "themes": [ 24 | { 25 | "label": "vaporwave", 26 | "uiTheme": "vs-dark", 27 | "path": "./themes/vaporwave-color-theme.json" 28 | }, 29 | { 30 | "label": "vaporwave /italic/", 31 | "uiTheme": "vs-dark", 32 | "path": "./themes/vaporwave-italic-color-theme.json" 33 | }, 34 | { 35 | "label": "vaporwave *bold*", 36 | "uiTheme": "vs-dark", 37 | "path": "./themes/vaporwave-bold-color-theme.json" 38 | }, 39 | { 40 | "label": "vaporwave |bordered|", 41 | "uiTheme": "vs-dark", 42 | "path": "./themes/vaporwave-bordered-color-theme.json" 43 | } 44 | ] 45 | }, 46 | "repository": { 47 | "type": "git", 48 | "url": "https://github.com/this-fifo/vaporwave-theme-vscode" 49 | }, 50 | "homepage": "https://vaporwave-theme.netlify.com/", 51 | "bugs": { 52 | "url": "https://github.com/this-fifo/vaporwave-theme-vscode/issues" 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | vaporwave 7 | 11 | 12 | 13 | 14 |
15 | 20 | L O G O 21 | 22 |
23 | 28 |

vaporwave

29 |
30 | preview 31 |

32 | Installation 33 |

34 |
    35 |
  1. Open the Extensions sidebar in VS Code
  2. 36 |
  3. 37 | Search for 38 | Vaporwave Theme 44 |
  4. 45 |
  5. Click Install
  6. 46 |
  7. 47 | Open the Command Palette with `Ctrl+Shift+P` or 48 | `⇧⌘P` 49 |
  8. 50 |
  9. 51 | Select Preferences: Color Theme and choose 52 | vaporwave. 53 |
  10. 54 |
55 |
56 | This theme is heavily inspired by 57 | Horizon 63 | and 64 | Synthwave 70 | 73 |
74 | 75 | 76 | -------------------------------------------------------------------------------- /themes/vaporwave-color-theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaporwave", 3 | "type": "dark", 4 | "colors": { 5 | "focusBorder": "#1A1C23", 6 | "foreground": "#D5D8DA", 7 | "widget.shadow": "#16161C", 8 | "selection.background": "#6C6F9380", 9 | "errorForeground": "#F43E5C", 10 | "textLink.activeForeground": "#FFFB96", 11 | "textLink.foreground": "#EEFFFF", 12 | "button.background": "#2E303E", 13 | "dropdown.background": "#232530", 14 | "dropdown.listBackground": "#2E303E", 15 | "input.background": "#2E303E", 16 | "inputOption.activeBorder": "#E9436D80", 17 | "inputValidation.errorBackground": "#F43E5C80", 18 | "inputValidation.errorBorder": "#F43E5C00", 19 | "scrollbar.shadow": "#16161C", 20 | "scrollbarSlider.activeBackground": "#6C6F9380", 21 | "scrollbarSlider.background": "#6C6F931A", 22 | "scrollbarSlider.hoverBackground": "#6C6F934D", 23 | "badge.foreground": "#D5D8DA", 24 | "badge.background": "#2E303E", 25 | "progressBar.background": "#E95378", 26 | "list.activeSelectionBackground": "#2E303E80", 27 | "list.activeSelectionForeground": "#D5D8DA", 28 | "list.dropBackground": "#6C6F9380", 29 | "list.focusBackground": "#2E303E80", 30 | "list.focusForeground": "#D5D8DA", 31 | "list.highlightForeground": "#E95378", 32 | "list.hoverBackground": "#2E303E80", 33 | "list.hoverForeground": "#D5D8DA", 34 | "list.inactiveSelectionBackground": "#2E303E4D", 35 | "list.inactiveSelectionForeground": "#D5D8DA", 36 | "list.inactiveFocusBackground": "#2E303E80", 37 | "list.errorForeground": "#F43E5CE6", 38 | "list.warningForeground": "#27D797B3", 39 | "activityBarBadge.background": "#EEFFFFE6", 40 | "activityBar.background": "#171520", 41 | "activityBar.dropBackground": "#34294f66", 42 | "activityBar.foreground": "#ffffffCC", 43 | "activityBarBadge.foreground": "#2a2139", 44 | "sideBar.foreground": "#b7c5d386", 45 | "sideBar.background": "#1a1c24", 46 | "sideBar.dropBackground": "#6C6F934D", 47 | "sideBarSectionHeader.background": "#1C1E26", 48 | "sideBarSectionHeader.foreground": "#D5D8DAB3", 49 | "editorGroup.border": "#1A1C23", 50 | "editorGroup.dropBackground": "#6C6F934D", 51 | "editorGroupHeader.tabsBackground": "#1C1E26", 52 | "tab.border": "#1C1E2600", 53 | "tab.activeBorder": "#E95378", 54 | "tab.inactiveBackground": "#1C1E26", 55 | "editor.background": "#1a1c24", 56 | "editorLineNumber.foreground": "#D5D8DA1A", 57 | "editorLineNumber.activeForeground": "#D5D8DA80", 58 | "editorCursor.background": "#1C1E26", 59 | "editorCursor.foreground": "#E95378", 60 | "editor.selectionBackground": "#ffffff36", 61 | "editor.selectionHighlightBackground": "#6C6F934D", 62 | "editor.wordHighlightBackground": "#6C6F9380", 63 | "editor.wordHighlightStrongBackground": "#6C6F9380", 64 | "editor.findMatchBackground": "#6C6F9380", 65 | "editor.findMatchHighlightBackground": "#6C6F934D", 66 | "editor.findRangeHighlightBackground": "#6C6F931A", 67 | "editor.hoverHighlightBackground": "#6C6F934D", 68 | "editor.lineHighlightBackground": "#2E303E4D", 69 | "editor.rangeHighlightBackground": "#2E303E80", 70 | "editorIndentGuide.background": "#2E303E80", 71 | "editorIndentGuide.activeBackground": "#2E303E", 72 | "editorRuler.foreground": "#6C6F934D", 73 | "editorCodeLens.foreground": "#6C6F9380", 74 | "editorBracketMatch.background": "#6C6F9380", 75 | "editorBracketMatch.border": "#6C6F9300", 76 | "editorOverviewRuler.border": "#2E303EB3", 77 | "editorOverviewRuler.findMatchForeground": "#6C6F93", 78 | "editorOverviewRuler.modifiedForeground": "#21BFC280", 79 | "editorOverviewRuler.addedForeground": "#09F7A080", 80 | "editorOverviewRuler.deletedForeground": "#F43E5C80", 81 | "editorOverviewRuler.errorForeground": "#F43E5CE6", 82 | "editorOverviewRuler.warningForeground": "#27D79780", 83 | "editorOverviewRuler.bracketMatchForeground": "#D5D8DA80", 84 | "editorError.foreground": "#F43E5C", 85 | "editorWarning.foreground": "#27D797B3", 86 | "editorGutter.modifiedBackground": "#21BFC2B3", 87 | "editorGutter.addedBackground": "#09F7A0B3", 88 | "editorGutter.deletedBackground": "#F43E5CB3", 89 | "diffEditor.insertedTextBackground": "#09F7A01A", 90 | "diffEditor.removedTextBackground": "#F43E5C1A", 91 | "editorWidget.background": "#232530", 92 | "editorWidget.border": "#232530", 93 | "editorSuggestWidget.highlightForeground": "#E95378", 94 | "peekView.border": "#1A1C23", 95 | "peekViewEditor.background": "#232530", 96 | "peekViewEditor.matchHighlightBackground": "#6C6F9380", 97 | "peekViewResult.background": "#232530", 98 | "peekViewResult.matchHighlightBackground": "#6C6F9380", 99 | "peekViewResult.selectionBackground": "#2E303E80", 100 | "peekViewTitle.background": "#232530", 101 | "panelTitle.activeBorder": "#E95378", 102 | "statusBar.background": "#1C1E26", 103 | "statusBar.foreground": "#D5D8DA80", 104 | "statusBar.debuggingBackground": "#09F7A0F1", 105 | "statusBar.debuggingForeground": "#06060C", 106 | "statusBar.noFolderBackground": "#1C1E26", 107 | "statusBarItem.hoverBackground": "#2E303E", 108 | "statusBarItem.prominentBackground": "#2E303E", 109 | "statusBarItem.prominentHoverBackground": "#6C6F93", 110 | "titleBar.activeBackground": "#1C1E26", 111 | "titleBar.inactiveBackground": "#1C1E26", 112 | "extensionButton.prominentBackground": "#E95378", 113 | "extensionButton.prominentHoverBackground": "#E9436D", 114 | "pickerGroup.foreground": "#E95378E6", 115 | "terminal.foreground": "#D5D8DA", 116 | "terminal.ansiBlue": "#26BBD9", 117 | "terminal.ansiBrightBlue": "#3FC4DE", 118 | "terminal.ansiBrightCyan": "#6BE4E6", 119 | "terminal.ansiBrightGreen": "#3FDAA4", 120 | "terminal.ansiBrightMagenta": "#F075B5", 121 | "terminal.ansiBrightRed": "#EC6A88", 122 | "terminal.ansiBrightYellow": "#FFFB96", 123 | "terminal.ansiCyan": "#59E1E3", 124 | "terminal.ansiGreen": "#29D398", 125 | "terminal.ansiMagenta": "#EE64AC", 126 | "terminal.ansiRed": "#E95678", 127 | "terminal.ansiYellow": "#FFFB96", 128 | "terminal.selectionBackground": "#6C6F934D", 129 | "terminalCursor.background": "#D5D8DA", 130 | "terminalCursor.foreground": "#6C6F9380", 131 | "debugToolBar.background": "#1C1E26", 132 | "walkThrough.embeddedEditorBackground": "#232530", 133 | "gitDecoration.addedResourceForeground": "#27D797B3", 134 | "gitDecoration.modifiedResourceForeground": "#FFFB96E6", 135 | "gitDecoration.deletedResourceForeground": "#F43E5C", 136 | "gitDecoration.untrackedResourceForeground": "#27D797", 137 | "gitDecoration.ignoredResourceForeground": "#D5D8DA4D", 138 | "breadcrumbPicker.background": "#232530" 139 | }, 140 | "tokenColors": [ 141 | { 142 | "name": "Comments", 143 | "scope": "comment", 144 | "settings": { "foreground": "#BBBBBB4D", "fontStyle": "" } 145 | }, 146 | { 147 | "name": "Constants", 148 | "scope": "constant", 149 | "settings": { "foreground": "#EEFFFFE6" } 150 | }, 151 | { 152 | "name": "Escape characters", 153 | "scope": "constant.character.escape", 154 | "settings": { "foreground": "#09F7A0F1" } 155 | }, 156 | { 157 | "name": "Named entities", 158 | "scope": "entity.name", 159 | "settings": { "foreground": "#09F7A0F1" } 160 | }, 161 | { 162 | "name": "Function names", 163 | "scope": "entity.name.function", 164 | "settings": { "foreground": "#09F7A0F1" } 165 | }, 166 | { 167 | "name": "Tags", 168 | "scope": "entity.name.tag", 169 | "settings": { "foreground": "#94D0FF", "fontStyle": "" } 170 | }, 171 | { 172 | "name": "Static types", 173 | "scope": ["entity.name.type", "storage.type.cs"], 174 | "settings": { "foreground": "#09F7A0F1" } 175 | }, 176 | { 177 | "name": "Tag attributes", 178 | "scope": "entity.other.attribute-name", 179 | "settings": { "foreground": "#EEFFFFE6", "fontStyle": "" } 180 | }, 181 | { 182 | "name": "Inherited classes", 183 | "scope": "entity.other.inherited-class", 184 | "settings": { "foreground": "#FFFB96E6" } 185 | }, 186 | { 187 | "name": "CSS ID selectors", 188 | "scope": "entity.other.attribute-name.id", 189 | "settings": { "foreground": "#09F7A0F1" } 190 | }, 191 | { 192 | "name": "Pseudo CSS", 193 | "scope": [ 194 | "entity.other.attribute-name.pseudo-element", 195 | "entity.other.attribute-name.pseudo-class" 196 | ], 197 | "settings": { "foreground": "#FFFB96E6" } 198 | }, 199 | { 200 | "name": "Variable names", 201 | "scope": ["entity.name.variable", "variable"], 202 | "settings": { "foreground": "#94D0FF" } 203 | }, 204 | { 205 | "name": "Keywords", 206 | "scope": "keyword", 207 | "settings": { "foreground": "#FF71CEE6", "fontStyle": "" } 208 | }, 209 | { 210 | "name": "Operators", 211 | "scope": "keyword.operator", 212 | "settings": { "foreground": "#BBBBBB" } 213 | }, 214 | { 215 | "name": "Special operators", 216 | "scope": [ 217 | "keyword.operator.new", 218 | "keyword.operator.expression", 219 | "keyword.operator.logical", 220 | "keyword.operator.delete" 221 | ], 222 | "settings": { "foreground": "#EEFFFFE6" } 223 | }, 224 | { 225 | "name": "Units", 226 | "scope": "keyword.other.unit", 227 | "settings": { "foreground": "#EEFFFFE6" } 228 | }, 229 | { 230 | "name": "Markup quotes", 231 | "scope": "markup.quote", 232 | "settings": { "foreground": "#FFFB96B3", "fontStyle": "" } 233 | }, 234 | { 235 | "name": "Markup headings", 236 | "scope": ["markup.heading", "entity.name.section"], 237 | "settings": { "foreground": "#94D0FF" } 238 | }, 239 | { 240 | "name": "Markup bold", 241 | "scope": "markup.bold", 242 | "settings": { "foreground": "#EEFFFFE6", "fontStyle": "bold" } 243 | }, 244 | { 245 | "name": "Markup italics", 246 | "scope": "markup.italic", 247 | "settings": { "foreground": "#09F7A0F1", "fontStyle": "" } 248 | }, 249 | { 250 | "name": "Markup code", 251 | "scope": ["markup.inline.raw", "markup.fenced_code.block"], 252 | "settings": { "foreground": "#EEFFFFE6" } 253 | }, 254 | { 255 | "name": "Markup links", 256 | "scope": "markup.underline.link", 257 | "settings": { "foreground": "#FFFB96E6" } 258 | }, 259 | { 260 | "name": "Storage keywords", 261 | "scope": "storage", 262 | "settings": { "foreground": "#EEFFFF", "fontStyle": "" } 263 | }, 264 | { 265 | "name": "Strings", 266 | "scope": ["string.quoted", "string.template"], 267 | "settings": { "foreground": "#FFFB96E6" } 268 | }, 269 | { 270 | "name": "Regex", 271 | "scope": "string.regexp", 272 | "settings": { "foreground": "#EEFFFF" } 273 | }, 274 | { 275 | "name": "Markup link descriptions", 276 | "scope": "string.other.link", 277 | "settings": { "foreground": "#EEFFFF" } 278 | }, 279 | { 280 | "name": "Provided (support) values", 281 | "scope": "support", 282 | "settings": { "foreground": "#09F7A0F1" } 283 | }, 284 | { 285 | "name": "Provided functions", 286 | "scope": "support.function", 287 | "settings": { "foreground": "#09F7A0F1" } 288 | }, 289 | { 290 | "name": "Provided variables", 291 | "scope": "support.variable", 292 | "settings": { "foreground": "#94D0FF" } 293 | }, 294 | { 295 | "name": "Object/JSON property names", 296 | "scope": ["support.type.property-name", "meta.object-literal.key"], 297 | "settings": { "foreground": "#94D0FF" } 298 | }, 299 | { 300 | "name": "CSS property names", 301 | "scope": "support.type.property-name.css", 302 | "settings": { "foreground": "#BBBBBB" } 303 | }, 304 | { 305 | "name": "Language variables", 306 | "scope": ["variable.language"], 307 | "settings": { "foreground": "#09F7A0F1", "fontStyle": "" } 308 | }, 309 | { 310 | "name": "Parameters", 311 | "scope": "variable.parameter", 312 | "settings": { "fontStyle": "" } 313 | }, 314 | { 315 | "name": "Embedded template punctuation", 316 | "scope": "string.template meta.embedded", 317 | "settings": { "foreground": "#BBBBBB" } 318 | }, 319 | { 320 | "name": "Tag brackets", 321 | "scope": "punctuation.definition.tag", 322 | "settings": { "foreground": "#01CDFEB3", "fontStyle": "" } 323 | }, 324 | { 325 | "name": "Key/value separators", 326 | "scope": "punctuation.separator", 327 | "settings": { "foreground": "#BBBBBB" } 328 | }, 329 | { 330 | "name": "Template expressions", 331 | "scope": "punctuation.definition.template-expression", 332 | "settings": { "foreground": "#EEFFFF" } 333 | }, 334 | { 335 | "name": "Embedded section punctuation", 336 | "scope": "punctuation.section.embedded", 337 | "settings": { "foreground": "#EEFFFF" } 338 | }, 339 | { 340 | "name": "Markup list punctuation", 341 | "scope": "punctuation.definition.list", 342 | "settings": { "foreground": "#EEFFFF" } 343 | } 344 | ] 345 | } 346 | -------------------------------------------------------------------------------- /themes/vaporwave-bold-color-theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaporwave-bold", 3 | "type": "dark", 4 | "colors": { 5 | "focusBorder": "#1A1C23", 6 | "foreground": "#D5D8DA", 7 | "widget.shadow": "#16161C", 8 | "selection.background": "#6C6F9380", 9 | "errorForeground": "#F43E5C", 10 | "textLink.activeForeground": "#FFFB96", 11 | "textLink.foreground": "#EEFFFF", 12 | "button.background": "#2E303E", 13 | "dropdown.background": "#232530", 14 | "dropdown.listBackground": "#2E303E", 15 | "input.background": "#2E303E", 16 | "inputOption.activeBorder": "#E9436D80", 17 | "inputValidation.errorBackground": "#F43E5C80", 18 | "inputValidation.errorBorder": "#F43E5C00", 19 | "scrollbar.shadow": "#16161C", 20 | "scrollbarSlider.activeBackground": "#6C6F9380", 21 | "scrollbarSlider.background": "#6C6F931A", 22 | "scrollbarSlider.hoverBackground": "#6C6F934D", 23 | "badge.foreground": "#D5D8DA", 24 | "badge.background": "#2E303E", 25 | "progressBar.background": "#E95378", 26 | "list.activeSelectionBackground": "#2E303E80", 27 | "list.activeSelectionForeground": "#D5D8DA", 28 | "list.dropBackground": "#6C6F9380", 29 | "list.focusBackground": "#2E303E80", 30 | "list.focusForeground": "#D5D8DA", 31 | "list.highlightForeground": "#E95378", 32 | "list.hoverBackground": "#2E303E80", 33 | "list.hoverForeground": "#D5D8DA", 34 | "list.inactiveSelectionBackground": "#2E303E4D", 35 | "list.inactiveSelectionForeground": "#D5D8DA", 36 | "list.inactiveFocusBackground": "#2E303E80", 37 | "list.errorForeground": "#F43E5CE6", 38 | "list.warningForeground": "#27D797B3", 39 | "activityBarBadge.background": "#EEFFFFE6", 40 | "activityBar.background": "#171520", 41 | "activityBar.dropBackground": "#34294f66", 42 | "activityBar.foreground": "#ffffffCC", 43 | "activityBarBadge.foreground": "#2a2139", 44 | "sideBar.foreground": "#b7c5d386", 45 | "sideBar.background": "#1a1c24", 46 | "sideBar.dropBackground": "#6C6F934D", 47 | "sideBarSectionHeader.background": "#1C1E26", 48 | "sideBarSectionHeader.foreground": "#D5D8DAB3", 49 | "editorGroup.border": "#1A1C23", 50 | "editorGroup.dropBackground": "#6C6F934D", 51 | "editorGroupHeader.tabsBackground": "#1C1E26", 52 | "tab.border": "#1C1E2600", 53 | "tab.activeBorder": "#E95378", 54 | "tab.inactiveBackground": "#1C1E26", 55 | "editor.background": "#1a1c24", 56 | "editorLineNumber.foreground": "#D5D8DA1A", 57 | "editorLineNumber.activeForeground": "#D5D8DA80", 58 | "editorCursor.background": "#1C1E26", 59 | "editorCursor.foreground": "#E95378", 60 | "editor.selectionBackground": "#ffffff36", 61 | "editor.selectionHighlightBackground": "#6C6F934D", 62 | "editor.wordHighlightBackground": "#6C6F9380", 63 | "editor.wordHighlightStrongBackground": "#6C6F9380", 64 | "editor.findMatchBackground": "#6C6F9380", 65 | "editor.findMatchHighlightBackground": "#6C6F934D", 66 | "editor.findRangeHighlightBackground": "#6C6F931A", 67 | "editor.hoverHighlightBackground": "#6C6F934D", 68 | "editor.lineHighlightBackground": "#2E303E4D", 69 | "editor.rangeHighlightBackground": "#2E303E80", 70 | "editorIndentGuide.background": "#2E303E80", 71 | "editorIndentGuide.activeBackground": "#2E303E", 72 | "editorRuler.foreground": "#6C6F934D", 73 | "editorCodeLens.foreground": "#6C6F9380", 74 | "editorBracketMatch.background": "#6C6F9380", 75 | "editorBracketMatch.border": "#6C6F9300", 76 | "editorOverviewRuler.border": "#2E303EB3", 77 | "editorOverviewRuler.findMatchForeground": "#6C6F93", 78 | "editorOverviewRuler.modifiedForeground": "#21BFC280", 79 | "editorOverviewRuler.addedForeground": "#09F7A080", 80 | "editorOverviewRuler.deletedForeground": "#F43E5C80", 81 | "editorOverviewRuler.errorForeground": "#F43E5CE6", 82 | "editorOverviewRuler.warningForeground": "#27D79780", 83 | "editorOverviewRuler.bracketMatchForeground": "#D5D8DA80", 84 | "editorError.foreground": "#F43E5C", 85 | "editorWarning.foreground": "#27D797B3", 86 | "editorGutter.modifiedBackground": "#21BFC2B3", 87 | "editorGutter.addedBackground": "#09F7A0B3", 88 | "editorGutter.deletedBackground": "#F43E5CB3", 89 | "diffEditor.insertedTextBackground": "#09F7A01A", 90 | "diffEditor.removedTextBackground": "#F43E5C1A", 91 | "editorWidget.background": "#232530", 92 | "editorWidget.border": "#232530", 93 | "editorSuggestWidget.highlightForeground": "#E95378", 94 | "peekView.border": "#1A1C23", 95 | "peekViewEditor.background": "#232530", 96 | "peekViewEditor.matchHighlightBackground": "#6C6F9380", 97 | "peekViewResult.background": "#232530", 98 | "peekViewResult.matchHighlightBackground": "#6C6F9380", 99 | "peekViewResult.selectionBackground": "#2E303E80", 100 | "peekViewTitle.background": "#232530", 101 | "panelTitle.activeBorder": "#E95378", 102 | "statusBar.background": "#1C1E26", 103 | "statusBar.foreground": "#D5D8DA80", 104 | "statusBar.debuggingBackground": "#09F7A0F1", 105 | "statusBar.debuggingForeground": "#06060C", 106 | "statusBar.noFolderBackground": "#1C1E26", 107 | "statusBarItem.hoverBackground": "#2E303E", 108 | "statusBarItem.prominentBackground": "#2E303E", 109 | "statusBarItem.prominentHoverBackground": "#6C6F93", 110 | "titleBar.activeBackground": "#1C1E26", 111 | "titleBar.inactiveBackground": "#1C1E26", 112 | "extensionButton.prominentBackground": "#E95378", 113 | "extensionButton.prominentHoverBackground": "#E9436D", 114 | "pickerGroup.foreground": "#E95378E6", 115 | "terminal.foreground": "#D5D8DA", 116 | "terminal.ansiBlue": "#26BBD9", 117 | "terminal.ansiBrightBlue": "#3FC4DE", 118 | "terminal.ansiBrightCyan": "#6BE4E6", 119 | "terminal.ansiBrightGreen": "#3FDAA4", 120 | "terminal.ansiBrightMagenta": "#F075B5", 121 | "terminal.ansiBrightRed": "#EC6A88", 122 | "terminal.ansiBrightYellow": "#FFFB96E6", 123 | "terminal.ansiCyan": "#59E1E3", 124 | "terminal.ansiGreen": "#29D398", 125 | "terminal.ansiMagenta": "#EE64AC", 126 | "terminal.ansiRed": "#E95678", 127 | "terminal.ansiYellow": "#FFFB96", 128 | "terminal.selectionBackground": "#6C6F934D", 129 | "terminalCursor.background": "#D5D8DA", 130 | "terminalCursor.foreground": "#6C6F9380", 131 | "debugToolBar.background": "#1C1E26", 132 | "walkThrough.embeddedEditorBackground": "#232530", 133 | "gitDecoration.addedResourceForeground": "#27D797B3", 134 | "gitDecoration.modifiedResourceForeground": "#FFFB96E6", 135 | "gitDecoration.deletedResourceForeground": "#F43E5C", 136 | "gitDecoration.untrackedResourceForeground": "#27D797", 137 | "gitDecoration.ignoredResourceForeground": "#D5D8DA4D", 138 | "breadcrumbPicker.background": "#232530" 139 | }, 140 | "tokenColors": [ 141 | { 142 | "name": "Comments", 143 | "scope": "comment", 144 | "settings": { "foreground": "#BBBBBB4D", "fontStyle": "bold" } 145 | }, 146 | { 147 | "name": "Constants", 148 | "scope": "constant", 149 | "settings": { "foreground": "#EEFFFFE6" } 150 | }, 151 | { 152 | "name": "Escape characters", 153 | "scope": "constant.character.escape", 154 | "settings": { "foreground": "#09F7A0F1" } 155 | }, 156 | { 157 | "name": "Named entities", 158 | "scope": "entity.name", 159 | "settings": { "foreground": "#09F7A0F1" } 160 | }, 161 | { 162 | "name": "Function names", 163 | "scope": "entity.name.function", 164 | "settings": { "foreground": "#09F7A0F1" } 165 | }, 166 | { 167 | "name": "Tags", 168 | "scope": "entity.name.tag", 169 | "settings": { "foreground": "#94D0FF", "fontStyle": "" } 170 | }, 171 | { 172 | "name": "Static types", 173 | "scope": ["entity.name.type", "storage.type.cs"], 174 | "settings": { "foreground": "#09F7A0F1" } 175 | }, 176 | { 177 | "name": "Tag attributes", 178 | "scope": "entity.other.attribute-name", 179 | "settings": { "foreground": "#EEFFFFE6", "fontStyle": "bold" } 180 | }, 181 | { 182 | "name": "Inherited classes", 183 | "scope": "entity.other.inherited-class", 184 | "settings": { "foreground": "#FFFB96E6" } 185 | }, 186 | { 187 | "name": "CSS ID selectors", 188 | "scope": "entity.other.attribute-name.id", 189 | "settings": { "foreground": "#09F7A0F1" } 190 | }, 191 | { 192 | "name": "Pseudo CSS", 193 | "scope": [ 194 | "entity.other.attribute-name.pseudo-element", 195 | "entity.other.attribute-name.pseudo-class" 196 | ], 197 | "settings": { "foreground": "#FFFB96E6" } 198 | }, 199 | { 200 | "name": "Variable names", 201 | "scope": ["entity.name.variable", "variable"], 202 | "settings": { "foreground": "#94D0FF" } 203 | }, 204 | { 205 | "name": "Keywords", 206 | "scope": "keyword", 207 | "settings": { "foreground": "#FF71CEE6", "fontStyle": "bold" } 208 | }, 209 | { 210 | "name": "Operators", 211 | "scope": "keyword.operator", 212 | "settings": { "foreground": "#BBBBBB" } 213 | }, 214 | { 215 | "name": "Special operators", 216 | "scope": [ 217 | "keyword.operator.new", 218 | "keyword.operator.expression", 219 | "keyword.operator.logical", 220 | "keyword.operator.delete" 221 | ], 222 | "settings": { "foreground": "#EEFFFFE6" } 223 | }, 224 | { 225 | "name": "Units", 226 | "scope": "keyword.other.unit", 227 | "settings": { "foreground": "#EEFFFFE6" } 228 | }, 229 | { 230 | "name": "Markup quotes", 231 | "scope": "markup.quote", 232 | "settings": { "foreground": "#FFFB96B3", "fontStyle": "bold" } 233 | }, 234 | { 235 | "name": "Markup headings", 236 | "scope": ["markup.heading", "entity.name.section"], 237 | "settings": { "foreground": "#94D0FF" } 238 | }, 239 | { 240 | "name": "Markup bold", 241 | "scope": "markup.bold", 242 | "settings": { "foreground": "#EEFFFFE6", "fontStyle": "bold" } 243 | }, 244 | { 245 | "name": "Markup italics", 246 | "scope": "markup.italic", 247 | "settings": { "foreground": "#09F7A0F1", "fontStyle": "italic" } 248 | }, 249 | { 250 | "name": "Markup code", 251 | "scope": ["markup.inline.raw", "markup.fenced_code.block"], 252 | "settings": { "foreground": "#EEFFFFE6" } 253 | }, 254 | { 255 | "name": "Markup links", 256 | "scope": "markup.underline.link", 257 | "settings": { "foreground": "#FFFB96E6" } 258 | }, 259 | { 260 | "name": "Storage keywords", 261 | "scope": "storage", 262 | "settings": { "foreground": "#EEFFFF", "fontStyle": "bold" } 263 | }, 264 | { 265 | "name": "Strings", 266 | "scope": ["string.quoted", "string.template"], 267 | "settings": { "foreground": "#FFFB96E6" } 268 | }, 269 | { 270 | "name": "Regex", 271 | "scope": "string.regexp", 272 | "settings": { "foreground": "#EEFFFF" } 273 | }, 274 | { 275 | "name": "Markup link descriptions", 276 | "scope": "string.other.link", 277 | "settings": { "foreground": "#EEFFFF" } 278 | }, 279 | { 280 | "name": "Provided (support) values", 281 | "scope": "support", 282 | "settings": { "foreground": "#09F7A0F1" } 283 | }, 284 | { 285 | "name": "Provided functions", 286 | "scope": "support.function", 287 | "settings": { "foreground": "#09F7A0F1" } 288 | }, 289 | { 290 | "name": "Provided variables", 291 | "scope": "support.variable", 292 | "settings": { "foreground": "#94D0FF" } 293 | }, 294 | { 295 | "name": "Object/JSON property names", 296 | "scope": ["support.type.property-name", "meta.object-literal.key"], 297 | "settings": { "foreground": "#94D0FF" } 298 | }, 299 | { 300 | "name": "CSS property names", 301 | "scope": "support.type.property-name.css", 302 | "settings": { "foreground": "#BBBBBB" } 303 | }, 304 | { 305 | "name": "Language variables", 306 | "scope": ["variable.language"], 307 | "settings": { "foreground": "#09F7A0F1", "fontStyle": "bold" } 308 | }, 309 | { 310 | "name": "Parameters", 311 | "scope": "variable.parameter", 312 | "settings": { "fontStyle": "" } 313 | }, 314 | { 315 | "name": "Embedded template punctuation", 316 | "scope": "string.template meta.embedded", 317 | "settings": { "foreground": "#BBBBBB" } 318 | }, 319 | { 320 | "name": "Tag brackets", 321 | "scope": "punctuation.definition.tag", 322 | "settings": { "foreground": "#01CDFEB3", "fontStyle": "" } 323 | }, 324 | { 325 | "name": "Key/value separators", 326 | "scope": "punctuation.separator", 327 | "settings": { "foreground": "#BBBBBB" } 328 | }, 329 | { 330 | "name": "Template expressions", 331 | "scope": "punctuation.definition.template-expression", 332 | "settings": { "foreground": "#EEFFFF" } 333 | }, 334 | { 335 | "name": "Embedded section punctuation", 336 | "scope": "punctuation.section.embedded", 337 | "settings": { "foreground": "#EEFFFF" } 338 | }, 339 | { 340 | "name": "Markup list punctuation", 341 | "scope": "punctuation.definition.list", 342 | "settings": { "foreground": "#EEFFFF" } 343 | } 344 | ] 345 | } 346 | -------------------------------------------------------------------------------- /themes/vaporwave-italic-color-theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaporwave-italic", 3 | "type": "dark", 4 | "colors": { 5 | "focusBorder": "#1A1C23", 6 | "foreground": "#D5D8DA", 7 | "widget.shadow": "#16161C", 8 | "selection.background": "#6C6F9380", 9 | "errorForeground": "#F43E5C", 10 | "textLink.activeForeground": "#FFFB96", 11 | "textLink.foreground": "#EEFFFF", 12 | "button.background": "#2E303E", 13 | "dropdown.background": "#232530", 14 | "dropdown.listBackground": "#2E303E", 15 | "input.background": "#2E303E", 16 | "inputOption.activeBorder": "#E9436D80", 17 | "inputValidation.errorBackground": "#F43E5C80", 18 | "inputValidation.errorBorder": "#F43E5C00", 19 | "scrollbar.shadow": "#16161C", 20 | "scrollbarSlider.activeBackground": "#6C6F9380", 21 | "scrollbarSlider.background": "#6C6F931A", 22 | "scrollbarSlider.hoverBackground": "#6C6F934D", 23 | "badge.foreground": "#D5D8DA", 24 | "badge.background": "#2E303E", 25 | "progressBar.background": "#E95378", 26 | "list.activeSelectionBackground": "#2E303E80", 27 | "list.activeSelectionForeground": "#D5D8DA", 28 | "list.dropBackground": "#6C6F9380", 29 | "list.focusBackground": "#2E303E80", 30 | "list.focusForeground": "#D5D8DA", 31 | "list.highlightForeground": "#E95378", 32 | "list.hoverBackground": "#2E303E80", 33 | "list.hoverForeground": "#D5D8DA", 34 | "list.inactiveSelectionBackground": "#2E303E4D", 35 | "list.inactiveSelectionForeground": "#D5D8DA", 36 | "list.inactiveFocusBackground": "#2E303E80", 37 | "list.errorForeground": "#F43E5CE6", 38 | "list.warningForeground": "#27D797B3", 39 | "activityBarBadge.background": "#EEFFFFE6", 40 | "activityBar.background": "#171520", 41 | "activityBar.dropBackground": "#34294f66", 42 | "activityBar.foreground": "#ffffffCC", 43 | "activityBarBadge.foreground": "#2a2139", 44 | "sideBar.foreground": "#b7c5d386", 45 | "sideBar.background": "#1a1c24", 46 | "sideBar.dropBackground": "#6C6F934D", 47 | "sideBarSectionHeader.background": "#1C1E26", 48 | "sideBarSectionHeader.foreground": "#D5D8DAB3", 49 | "editorGroup.border": "#1A1C23", 50 | "editorGroup.dropBackground": "#6C6F934D", 51 | "editorGroupHeader.tabsBackground": "#1C1E26", 52 | "tab.border": "#1C1E2600", 53 | "tab.activeBorder": "#E95378", 54 | "tab.inactiveBackground": "#1C1E26", 55 | "editor.background": "#1a1c24", 56 | "editorLineNumber.foreground": "#D5D8DA1A", 57 | "editorLineNumber.activeForeground": "#D5D8DA80", 58 | "editorCursor.background": "#1C1E26", 59 | "editorCursor.foreground": "#E95378", 60 | "editor.selectionBackground": "#ffffff36", 61 | "editor.selectionHighlightBackground": "#6C6F934D", 62 | "editor.wordHighlightBackground": "#6C6F9380", 63 | "editor.wordHighlightStrongBackground": "#6C6F9380", 64 | "editor.findMatchBackground": "#6C6F9380", 65 | "editor.findMatchHighlightBackground": "#6C6F934D", 66 | "editor.findRangeHighlightBackground": "#6C6F931A", 67 | "editor.hoverHighlightBackground": "#6C6F934D", 68 | "editor.lineHighlightBackground": "#2E303E4D", 69 | "editor.rangeHighlightBackground": "#2E303E80", 70 | "editorIndentGuide.background": "#2E303E80", 71 | "editorIndentGuide.activeBackground": "#2E303E", 72 | "editorRuler.foreground": "#6C6F934D", 73 | "editorCodeLens.foreground": "#6C6F9380", 74 | "editorBracketMatch.background": "#6C6F9380", 75 | "editorBracketMatch.border": "#6C6F9300", 76 | "editorOverviewRuler.border": "#2E303EB3", 77 | "editorOverviewRuler.findMatchForeground": "#6C6F93", 78 | "editorOverviewRuler.modifiedForeground": "#21BFC280", 79 | "editorOverviewRuler.addedForeground": "#09F7A080", 80 | "editorOverviewRuler.deletedForeground": "#F43E5C80", 81 | "editorOverviewRuler.errorForeground": "#F43E5CE6", 82 | "editorOverviewRuler.warningForeground": "#27D79780", 83 | "editorOverviewRuler.bracketMatchForeground": "#D5D8DA80", 84 | "editorError.foreground": "#F43E5C", 85 | "editorWarning.foreground": "#27D797B3", 86 | "editorGutter.modifiedBackground": "#21BFC2B3", 87 | "editorGutter.addedBackground": "#09F7A0B3", 88 | "editorGutter.deletedBackground": "#F43E5CB3", 89 | "diffEditor.insertedTextBackground": "#09F7A01A", 90 | "diffEditor.removedTextBackground": "#F43E5C1A", 91 | "editorWidget.background": "#232530", 92 | "editorWidget.border": "#232530", 93 | "editorSuggestWidget.highlightForeground": "#E95378", 94 | "peekView.border": "#1A1C23", 95 | "peekViewEditor.background": "#232530", 96 | "peekViewEditor.matchHighlightBackground": "#6C6F9380", 97 | "peekViewResult.background": "#232530", 98 | "peekViewResult.matchHighlightBackground": "#6C6F9380", 99 | "peekViewResult.selectionBackground": "#2E303E80", 100 | "peekViewTitle.background": "#232530", 101 | "panelTitle.activeBorder": "#E95378", 102 | "statusBar.background": "#1C1E26", 103 | "statusBar.foreground": "#D5D8DA80", 104 | "statusBar.debuggingBackground": "#09F7A0F1", 105 | "statusBar.debuggingForeground": "#06060C", 106 | "statusBar.noFolderBackground": "#1C1E26", 107 | "statusBarItem.hoverBackground": "#2E303E", 108 | "statusBarItem.prominentBackground": "#2E303E", 109 | "statusBarItem.prominentHoverBackground": "#6C6F93", 110 | "titleBar.activeBackground": "#1C1E26", 111 | "titleBar.inactiveBackground": "#1C1E26", 112 | "extensionButton.prominentBackground": "#E95378", 113 | "extensionButton.prominentHoverBackground": "#E9436D", 114 | "pickerGroup.foreground": "#E95378E6", 115 | "terminal.foreground": "#D5D8DA", 116 | "terminal.ansiBlue": "#26BBD9", 117 | "terminal.ansiBrightBlue": "#3FC4DE", 118 | "terminal.ansiBrightCyan": "#6BE4E6", 119 | "terminal.ansiBrightGreen": "#3FDAA4", 120 | "terminal.ansiBrightMagenta": "#F075B5", 121 | "terminal.ansiBrightRed": "#EC6A88", 122 | "terminal.ansiBrightYellow": "#FFFB96E6", 123 | "terminal.ansiCyan": "#59E1E3", 124 | "terminal.ansiGreen": "#29D398", 125 | "terminal.ansiMagenta": "#EE64AC", 126 | "terminal.ansiRed": "#E95678", 127 | "terminal.ansiYellow": "#FFFB96", 128 | "terminal.selectionBackground": "#6C6F934D", 129 | "terminalCursor.background": "#D5D8DA", 130 | "terminalCursor.foreground": "#6C6F9380", 131 | "debugToolBar.background": "#1C1E26", 132 | "walkThrough.embeddedEditorBackground": "#232530", 133 | "gitDecoration.addedResourceForeground": "#27D797B3", 134 | "gitDecoration.modifiedResourceForeground": "#FFFB96E6", 135 | "gitDecoration.deletedResourceForeground": "#F43E5C", 136 | "gitDecoration.untrackedResourceForeground": "#27D797", 137 | "gitDecoration.ignoredResourceForeground": "#D5D8DA4D", 138 | "breadcrumbPicker.background": "#232530" 139 | }, 140 | "tokenColors": [ 141 | { 142 | "name": "Comments", 143 | "scope": "comment", 144 | "settings": { "foreground": "#BBBBBB4D", "fontStyle": "italic" } 145 | }, 146 | { 147 | "name": "Constants", 148 | "scope": "constant", 149 | "settings": { "foreground": "#EEFFFFE6" } 150 | }, 151 | { 152 | "name": "Escape characters", 153 | "scope": "constant.character.escape", 154 | "settings": { "foreground": "#09F7A0F1" } 155 | }, 156 | { 157 | "name": "Named entities", 158 | "scope": "entity.name", 159 | "settings": { "foreground": "#09F7A0F1" } 160 | }, 161 | { 162 | "name": "Function names", 163 | "scope": "entity.name.function", 164 | "settings": { "foreground": "#09F7A0F1" } 165 | }, 166 | { 167 | "name": "Tags", 168 | "scope": "entity.name.tag", 169 | "settings": { "foreground": "#94D0FF", "fontStyle": "" } 170 | }, 171 | { 172 | "name": "Static types", 173 | "scope": ["entity.name.type", "storage.type.cs"], 174 | "settings": { "foreground": "#09F7A0F1" } 175 | }, 176 | { 177 | "name": "Tag attributes", 178 | "scope": "entity.other.attribute-name", 179 | "settings": { "foreground": "#EEFFFFE6", "fontStyle": "italic" } 180 | }, 181 | { 182 | "name": "Inherited classes", 183 | "scope": "entity.other.inherited-class", 184 | "settings": { "foreground": "#FFFB96E6" } 185 | }, 186 | { 187 | "name": "CSS ID selectors", 188 | "scope": "entity.other.attribute-name.id", 189 | "settings": { "foreground": "#09F7A0F1" } 190 | }, 191 | { 192 | "name": "Pseudo CSS", 193 | "scope": [ 194 | "entity.other.attribute-name.pseudo-element", 195 | "entity.other.attribute-name.pseudo-class" 196 | ], 197 | "settings": { "foreground": "#FFFB96E6" } 198 | }, 199 | { 200 | "name": "Variable names", 201 | "scope": ["entity.name.variable", "variable"], 202 | "settings": { "foreground": "#94D0FF" } 203 | }, 204 | { 205 | "name": "Keywords", 206 | "scope": "keyword", 207 | "settings": { "foreground": "#FF71CEE6", "fontStyle": "italic" } 208 | }, 209 | { 210 | "name": "Operators", 211 | "scope": [ 212 | "keyword.operator", 213 | "keyword.operator.expression", 214 | "keyword.operator.logical" 215 | ], 216 | "settings": { "foreground": "#EEFFFFE6", "fontStyle": "" } 217 | }, 218 | { 219 | "name": "Special operators", 220 | "scope": ["keyword.operator.new", "keyword.operator.delete"], 221 | "settings": { "foreground": "#EEFFFFE6", "fontStyle": "italic" } 222 | }, 223 | { 224 | "name": "Units", 225 | "scope": "keyword.other.unit", 226 | "settings": { "foreground": "#EEFFFFE6" } 227 | }, 228 | { 229 | "name": "Markup quotes", 230 | "scope": "markup.quote", 231 | "settings": { "foreground": "#FFFB96B3", "fontStyle": "italic" } 232 | }, 233 | { 234 | "name": "Markup headings", 235 | "scope": ["markup.heading", "entity.name.section"], 236 | "settings": { "foreground": "#94D0FF" } 237 | }, 238 | { 239 | "name": "Markup bold", 240 | "scope": "markup.bold", 241 | "settings": { "foreground": "#EEFFFFE6", "fontStyle": "bold" } 242 | }, 243 | { 244 | "name": "Markup italics", 245 | "scope": "markup.italic", 246 | "settings": { "foreground": "#09F7A0F1", "fontStyle": "italic" } 247 | }, 248 | { 249 | "name": "Markup code", 250 | "scope": ["markup.inline.raw", "markup.fenced_code.block"], 251 | "settings": { "foreground": "#EEFFFFE6" } 252 | }, 253 | { 254 | "name": "Markup links", 255 | "scope": "markup.underline.link", 256 | "settings": { "foreground": "#FFFB96E6" } 257 | }, 258 | { 259 | "name": "Storage keywords", 260 | "scope": "storage", 261 | "settings": { "foreground": "#EEFFFF", "fontStyle": "italic" } 262 | }, 263 | { 264 | "name": "Strings", 265 | "scope": ["string.quoted", "string.template"], 266 | "settings": { "foreground": "#FFFB96E6" } 267 | }, 268 | { 269 | "name": "Regex", 270 | "scope": "string.regexp", 271 | "settings": { "foreground": "#EEFFFF" } 272 | }, 273 | { 274 | "name": "Markup link descriptions", 275 | "scope": "string.other.link", 276 | "settings": { "foreground": "#EEFFFF" } 277 | }, 278 | { 279 | "name": "Provided (support) values", 280 | "scope": "support", 281 | "settings": { "foreground": "#09F7A0F1" } 282 | }, 283 | { 284 | "name": "Provided functions", 285 | "scope": "support.function", 286 | "settings": { "foreground": "#09F7A0F1" } 287 | }, 288 | { 289 | "name": "Provided variables", 290 | "scope": "support.variable", 291 | "settings": { "foreground": "#94D0FF" } 292 | }, 293 | { 294 | "name": "Object/JSON property names", 295 | "scope": ["support.type.property-name", "meta.object-literal.key"], 296 | "settings": { "foreground": "#94D0FF" } 297 | }, 298 | { 299 | "name": "CSS property names", 300 | "scope": "support.type.property-name.css", 301 | "settings": { "foreground": "#BBBBBB" } 302 | }, 303 | { 304 | "name": "Language variables", 305 | "scope": ["variable.language"], 306 | "settings": { "foreground": "#09F7A0F1", "fontStyle": "italic" } 307 | }, 308 | { 309 | "name": "Parameters", 310 | "scope": "variable.parameter", 311 | "settings": { "fontStyle": "" } 312 | }, 313 | { 314 | "name": "Embedded template punctuation", 315 | "scope": "string.template meta.embedded", 316 | "settings": { "foreground": "#BBBBBB" } 317 | }, 318 | { 319 | "name": "Tag brackets", 320 | "scope": "punctuation.definition.tag", 321 | "settings": { "foreground": "#01CDFEB3", "fontStyle": "" } 322 | }, 323 | { 324 | "name": "Key/value separators", 325 | "scope": "punctuation.separator", 326 | "settings": { "foreground": "#BBBBBB" } 327 | }, 328 | { 329 | "name": "Template expressions", 330 | "scope": "punctuation.definition.template-expression", 331 | "settings": { "foreground": "#EEFFFF" } 332 | }, 333 | { 334 | "name": "Embedded section punctuation", 335 | "scope": "punctuation.section.embedded", 336 | "settings": { "foreground": "#EEFFFF" } 337 | }, 338 | { 339 | "name": "Markup list punctuation", 340 | "scope": "punctuation.definition.list", 341 | "settings": { "foreground": "#EEFFFF" } 342 | } 343 | ] 344 | } 345 | -------------------------------------------------------------------------------- /themes/vaporwave-bordered-color-theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vaporwave-bordered", 3 | "type": "dark", 4 | "colors": { 5 | "focusBorder": "#1A1C23", 6 | "foreground": "#D5D8DA", 7 | "widget.shadow": "#16161C", 8 | "selection.background": "#6C6F9380", 9 | "errorForeground": "#F43E5C", 10 | "textLink.activeForeground": "#FFFB96", 11 | "textLink.foreground": "#EEFFFF", 12 | "button.background": "#2E303E", 13 | "dropdown.background": "#232530", 14 | "dropdown.listBackground": "#2E303E", 15 | "input.background": "#2E303E", 16 | "inputOption.activeBorder": "#E9436D80", 17 | "inputValidation.errorBackground": "#F43E5C80", 18 | "inputValidation.errorBorder": "#F43E5C00", 19 | "scrollbar.shadow": "#16161C", 20 | "scrollbarSlider.activeBackground": "#6C6F9380", 21 | "scrollbarSlider.background": "#6C6F931A", 22 | "scrollbarSlider.hoverBackground": "#6C6F934D", 23 | "badge.foreground": "#D5D8DA", 24 | "badge.background": "#2E303E", 25 | "progressBar.background": "#E95378", 26 | "list.activeSelectionBackground": "#2E303E80", 27 | "list.activeSelectionForeground": "#D5D8DA", 28 | "list.dropBackground": "#6C6F9380", 29 | "list.focusBackground": "#2E303E80", 30 | "list.focusForeground": "#D5D8DA", 31 | "list.highlightForeground": "#E95378", 32 | "list.hoverBackground": "#2E303E80", 33 | "list.hoverForeground": "#D5D8DA", 34 | "list.inactiveSelectionBackground": "#2E303E4D", 35 | "list.inactiveSelectionForeground": "#D5D8DA", 36 | "list.inactiveFocusBackground": "#2E303E80", 37 | "list.errorForeground": "#F43E5CE6", 38 | "list.warningForeground": "#27D797B3", 39 | "activityBarBadge.background": "#EEFFFFE6", 40 | "activityBar.border": "#b7c5d370", 41 | "activityBar.background": "#171520", 42 | "activityBar.dropBackground": "#34294f66", 43 | "activityBar.foreground": "#ffffffCC", 44 | "activityBarBadge.foreground": "#2a2139", 45 | "sideBar.foreground": "#b7c5d386", 46 | "sideBar.background": "#1a1c24", 47 | "sideBar.border": "#b7c5d370", 48 | "sideBar.dropBackground": "#6C6F934D", 49 | "sideBarSectionHeader.background": "#1C1E26", 50 | "sideBarSectionHeader.foreground": "#D5D8DAB3", 51 | "editorGroup.border": "#1A1C23", 52 | "editorGroup.dropBackground": "#6C6F934D", 53 | "editorGroupHeader.tabsBackground": "#1C1E26", 54 | "tab.border": "#1C1E2600", 55 | "tab.activeBorder": "#E95378", 56 | "tab.inactiveBackground": "#1C1E26", 57 | "editor.background": "#1a1c24", 58 | "editorLineNumber.foreground": "#D5D8DA1A", 59 | "editorLineNumber.activeForeground": "#D5D8DA80", 60 | "editorCursor.background": "#1C1E26", 61 | "editorCursor.foreground": "#E95378", 62 | "editor.selectionBackground": "#ffffff36", 63 | "editor.selectionHighlightBackground": "#6C6F934D", 64 | "editor.wordHighlightBackground": "#6C6F9380", 65 | "editor.wordHighlightStrongBackground": "#6C6F9380", 66 | "editor.findMatchBackground": "#6C6F9380", 67 | "editor.findMatchHighlightBackground": "#6C6F934D", 68 | "editor.findRangeHighlightBackground": "#6C6F931A", 69 | "editor.hoverHighlightBackground": "#6C6F934D", 70 | "editor.lineHighlightBackground": "#2E303E4D", 71 | "editor.rangeHighlightBackground": "#2E303E80", 72 | "editorIndentGuide.background": "#2E303E80", 73 | "editorIndentGuide.activeBackground": "#2E303E", 74 | "editorRuler.foreground": "#6C6F934D", 75 | "editorCodeLens.foreground": "#6C6F9380", 76 | "editorBracketMatch.background": "#6C6F9380", 77 | "editorBracketMatch.border": "#6C6F9300", 78 | "editorOverviewRuler.border": "#2E303EB3", 79 | "editorOverviewRuler.findMatchForeground": "#6C6F93", 80 | "editorOverviewRuler.modifiedForeground": "#21BFC280", 81 | "editorOverviewRuler.addedForeground": "#09F7A080", 82 | "editorOverviewRuler.deletedForeground": "#F43E5C80", 83 | "editorOverviewRuler.errorForeground": "#F43E5CE6", 84 | "editorOverviewRuler.warningForeground": "#27D79780", 85 | "editorOverviewRuler.bracketMatchForeground": "#D5D8DA80", 86 | "editorError.foreground": "#F43E5C", 87 | "editorWarning.foreground": "#27D797B3", 88 | "editorGutter.modifiedBackground": "#21BFC2B3", 89 | "editorGutter.addedBackground": "#09F7A0B3", 90 | "editorGutter.deletedBackground": "#F43E5CB3", 91 | "diffEditor.insertedTextBackground": "#09F7A01A", 92 | "diffEditor.removedTextBackground": "#F43E5C1A", 93 | "editorWidget.background": "#232530", 94 | "editorWidget.border": "#232530", 95 | "editorSuggestWidget.highlightForeground": "#E95378", 96 | "peekView.border": "#1A1C23", 97 | "peekViewEditor.background": "#232530", 98 | "peekViewEditor.matchHighlightBackground": "#6C6F9380", 99 | "peekViewResult.background": "#232530", 100 | "peekViewResult.matchHighlightBackground": "#6C6F9380", 101 | "peekViewResult.selectionBackground": "#2E303E80", 102 | "peekViewTitle.background": "#232530", 103 | "panelTitle.activeBorder": "#E95378", 104 | "statusBar.border": "#b7c5d370", 105 | "statusBar.background": "#1C1E26", 106 | "statusBar.foreground": "#D5D8DA80", 107 | "statusBar.debuggingBackground": "#09F7A0F1", 108 | "statusBar.debuggingForeground": "#06060C", 109 | "statusBar.noFolderBackground": "#1C1E26", 110 | "statusBarItem.hoverBackground": "#2E303E", 111 | "statusBarItem.prominentBackground": "#2E303E", 112 | "statusBarItem.prominentHoverBackground": "#6C6F93", 113 | "titleBar.activeBackground": "#1C1E26", 114 | "titleBar.inactiveBackground": "#1C1E26", 115 | "extensionButton.prominentBackground": "#E95378", 116 | "extensionButton.prominentHoverBackground": "#E9436D", 117 | "pickerGroup.foreground": "#E95378E6", 118 | "terminal.foreground": "#D5D8DA", 119 | "terminal.ansiBlue": "#26BBD9", 120 | "terminal.ansiBrightBlue": "#3FC4DE", 121 | "terminal.ansiBrightCyan": "#6BE4E6", 122 | "terminal.ansiBrightGreen": "#3FDAA4", 123 | "terminal.ansiBrightMagenta": "#F075B5", 124 | "terminal.ansiBrightRed": "#EC6A88", 125 | "terminal.ansiBrightYellow": "#FFFB96E6", 126 | "terminal.ansiCyan": "#59E1E3", 127 | "terminal.ansiGreen": "#29D398", 128 | "terminal.ansiMagenta": "#EE64AC", 129 | "terminal.ansiRed": "#E95678", 130 | "terminal.ansiYellow": "#FFFB96", 131 | "terminal.selectionBackground": "#6C6F934D", 132 | "terminalCursor.background": "#D5D8DA", 133 | "terminalCursor.foreground": "#6C6F9380", 134 | "debugToolBar.background": "#1C1E26", 135 | "walkThrough.embeddedEditorBackground": "#232530", 136 | "gitDecoration.addedResourceForeground": "#27D797B3", 137 | "gitDecoration.modifiedResourceForeground": "#FFFB96E6", 138 | "gitDecoration.deletedResourceForeground": "#F43E5C", 139 | "gitDecoration.untrackedResourceForeground": "#27D797", 140 | "gitDecoration.ignoredResourceForeground": "#D5D8DA4D", 141 | "breadcrumbPicker.background": "#232530" 142 | }, 143 | "tokenColors": [ 144 | { 145 | "name": "Comments", 146 | "scope": "comment", 147 | "settings": { "foreground": "#BBBBBB4D", "fontStyle": "italic" } 148 | }, 149 | { 150 | "name": "Constants", 151 | "scope": "constant", 152 | "settings": { "foreground": "#EEFFFFE6" } 153 | }, 154 | { 155 | "name": "Escape characters", 156 | "scope": "constant.character.escape", 157 | "settings": { "foreground": "#09F7A0F1" } 158 | }, 159 | { 160 | "name": "Named entities", 161 | "scope": "entity.name", 162 | "settings": { "foreground": "#09F7A0F1" } 163 | }, 164 | { 165 | "name": "Function names", 166 | "scope": "entity.name.function", 167 | "settings": { "foreground": "#09F7A0F1" } 168 | }, 169 | { 170 | "name": "Tags", 171 | "scope": "entity.name.tag", 172 | "settings": { "foreground": "#94D0FF", "fontStyle": "" } 173 | }, 174 | { 175 | "name": "Static types", 176 | "scope": ["entity.name.type", "storage.type.cs"], 177 | "settings": { "foreground": "#09F7A0F1" } 178 | }, 179 | { 180 | "name": "Tag attributes", 181 | "scope": "entity.other.attribute-name", 182 | "settings": { "foreground": "#EEFFFFE6", "fontStyle": "italic" } 183 | }, 184 | { 185 | "name": "Inherited classes", 186 | "scope": "entity.other.inherited-class", 187 | "settings": { "foreground": "#FFFB96E6" } 188 | }, 189 | { 190 | "name": "CSS ID selectors", 191 | "scope": "entity.other.attribute-name.id", 192 | "settings": { "foreground": "#09F7A0F1" } 193 | }, 194 | { 195 | "name": "Pseudo CSS", 196 | "scope": [ 197 | "entity.other.attribute-name.pseudo-element", 198 | "entity.other.attribute-name.pseudo-class" 199 | ], 200 | "settings": { "foreground": "#FFFB96E6" } 201 | }, 202 | { 203 | "name": "Variable names", 204 | "scope": ["entity.name.variable", "variable"], 205 | "settings": { "foreground": "#94D0FF" } 206 | }, 207 | { 208 | "name": "Keywords", 209 | "scope": "keyword", 210 | "settings": { "foreground": "#FF71CEE6", "fontStyle": "italic" } 211 | }, 212 | { 213 | "name": "Operators", 214 | "scope": [ 215 | "keyword.operator", 216 | "keyword.operator.expression", 217 | "keyword.operator.logical" 218 | ], 219 | "settings": { "foreground": "#EEFFFFE6", "fontStyle": "" } 220 | }, 221 | { 222 | "name": "Special operators", 223 | "scope": ["keyword.operator.new", "keyword.operator.delete"], 224 | "settings": { "foreground": "#EEFFFFE6", "fontStyle": "italic" } 225 | }, 226 | { 227 | "name": "Units", 228 | "scope": "keyword.other.unit", 229 | "settings": { "foreground": "#EEFFFFE6" } 230 | }, 231 | { 232 | "name": "Markup quotes", 233 | "scope": "markup.quote", 234 | "settings": { "foreground": "#FFFB96B3", "fontStyle": "italic" } 235 | }, 236 | { 237 | "name": "Markup headings", 238 | "scope": ["markup.heading", "entity.name.section"], 239 | "settings": { "foreground": "#94D0FF" } 240 | }, 241 | { 242 | "name": "Markup bold", 243 | "scope": "markup.bold", 244 | "settings": { "foreground": "#EEFFFFE6", "fontStyle": "bold" } 245 | }, 246 | { 247 | "name": "Markup italics", 248 | "scope": "markup.italic", 249 | "settings": { "foreground": "#09F7A0F1", "fontStyle": "italic" } 250 | }, 251 | { 252 | "name": "Markup code", 253 | "scope": ["markup.inline.raw", "markup.fenced_code.block"], 254 | "settings": { "foreground": "#EEFFFFE6" } 255 | }, 256 | { 257 | "name": "Markup links", 258 | "scope": "markup.underline.link", 259 | "settings": { "foreground": "#FFFB96E6" } 260 | }, 261 | { 262 | "name": "Storage keywords", 263 | "scope": "storage", 264 | "settings": { "foreground": "#EEFFFF", "fontStyle": "italic" } 265 | }, 266 | { 267 | "name": "Strings", 268 | "scope": ["string.quoted", "string.template"], 269 | "settings": { "foreground": "#FFFB96E6" } 270 | }, 271 | { 272 | "name": "Regex", 273 | "scope": "string.regexp", 274 | "settings": { "foreground": "#EEFFFF" } 275 | }, 276 | { 277 | "name": "Markup link descriptions", 278 | "scope": "string.other.link", 279 | "settings": { "foreground": "#EEFFFF" } 280 | }, 281 | { 282 | "name": "Provided (support) values", 283 | "scope": "support", 284 | "settings": { "foreground": "#09F7A0F1" } 285 | }, 286 | { 287 | "name": "Provided functions", 288 | "scope": "support.function", 289 | "settings": { "foreground": "#09F7A0F1" } 290 | }, 291 | { 292 | "name": "Provided variables", 293 | "scope": "support.variable", 294 | "settings": { "foreground": "#94D0FF" } 295 | }, 296 | { 297 | "name": "Object/JSON property names", 298 | "scope": ["support.type.property-name", "meta.object-literal.key"], 299 | "settings": { "foreground": "#94D0FF" } 300 | }, 301 | { 302 | "name": "CSS property names", 303 | "scope": "support.type.property-name.css", 304 | "settings": { "foreground": "#BBBBBB" } 305 | }, 306 | { 307 | "name": "Language variables", 308 | "scope": ["variable.language"], 309 | "settings": { "foreground": "#09F7A0F1", "fontStyle": "italic" } 310 | }, 311 | { 312 | "name": "Parameters", 313 | "scope": "variable.parameter", 314 | "settings": { "fontStyle": "" } 315 | }, 316 | { 317 | "name": "Embedded template punctuation", 318 | "scope": "string.template meta.embedded", 319 | "settings": { "foreground": "#BBBBBB" } 320 | }, 321 | { 322 | "name": "Tag brackets", 323 | "scope": "punctuation.definition.tag", 324 | "settings": { "foreground": "#01CDFEB3", "fontStyle": "" } 325 | }, 326 | { 327 | "name": "Key/value separators", 328 | "scope": "punctuation.separator", 329 | "settings": { "foreground": "#BBBBBB" } 330 | }, 331 | { 332 | "name": "Template expressions", 333 | "scope": "punctuation.definition.template-expression", 334 | "settings": { "foreground": "#EEFFFF" } 335 | }, 336 | { 337 | "name": "Embedded section punctuation", 338 | "scope": "punctuation.section.embedded", 339 | "settings": { "foreground": "#EEFFFF" } 340 | }, 341 | { 342 | "name": "Markup list punctuation", 343 | "scope": "punctuation.definition.list", 344 | "settings": { "foreground": "#EEFFFF" } 345 | } 346 | ] 347 | } 348 | --------------------------------------------------------------------------------