├── .gitignore ├── .gitattributes ├── .vscodeignore ├── images └── jollifake-icon.png ├── CHANGELOG.md ├── .vscode └── launch.json ├── package.json ├── vsc-extension-quickstart.md ├── README.md └── themes └── Jollifake-color-theme.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.vsix 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set default behavior to automatically normalize line endings. 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | .gitignore 4 | vsc-extension-quickstart.md 5 | -------------------------------------------------------------------------------- /images/jollifake-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeoooo/jollifake/HEAD/images/jollifake-icon.png -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to the "jollifake" 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": "jollifake", 3 | "publisher": "jeooo", 4 | "displayName": "Jollifake", 5 | "description": "A Jollibee-based VSCode Color Theme", 6 | "version": "0.0.3", 7 | "icon": "images/jollifake-icon.png", 8 | "engines": { 9 | "vscode": "^1.76.0" 10 | }, 11 | "categories": [ 12 | "Themes" 13 | ], 14 | "contributes": { 15 | "themes": [ 16 | { 17 | "label": "Jollifake", 18 | "uiTheme": "vs", 19 | "path": "./themes/Jollifake-color-theme.json" 20 | } 21 | ] 22 | }, 23 | "iconThemes": { 24 | "light": "images/jollifake-icon.png", 25 | "dark": "images/jollifake-icon.png" 26 | }, 27 | "repository": { 28 | "type": "git", 29 | "url": "https://github.com/jeoooo/jollifake.git" 30 | } 31 | } -------------------------------------------------------------------------------- /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/Jollifake-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 `Developer: Inspect Editor Tokens and 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Jollifake 2 | ![alt text](https://imgur.com/Q3Z9LRE.png) 3 | 4 | 5 | 6 | ## Ready to level up your coding game with a side of Filipino flair? 🍗🐝💻 7 | 8 | Feast your eyes on "Jollifake: The Jollibee-Themed VSCode Theme" – where programming meets palatable pleasure! 9 | 10 | Embrace the warmth of Jollibee's signature red and yellow hues as you conquer bugs and errors with the spirit of a cheerful bee buzzing through lines of code. It's a coding experience that's truly "Bida ang Saya!" 11 | 12 | With Jollifake, every line of code is a celebration, where joy and productivity unite to create a truly delightful and fulfilling experience. Every coding session becomes a fiesta of productivity and creativity, making you feel like a true "Bida" in the world of programming. Join the coding revolution and infuse your development journey with the magic of Jollifake! 13 | 14 | So why wait? Unleash the "linamnam" of CodingBee and bring a taste of Jollibee's joy to your coding escapades! 15 | 16 | #BidaAngPagCode 17 | 18 | # Changelog 19 | 20 | 21 | For extension changes, Please see [CHANGELOG.md](CHANGELOG.md). 22 | 23 | # Contributing 24 | 25 | 26 | Thank you for considering contributing to this VSCode color theme! Here are some guidelines to help you get started: 27 | 28 | 1. Fork this repository and make your changes on a new branch. 29 | 2. Test your changes to make sure they work as intended. 30 | 3. Submit a pull request with your changes. 31 | 32 | Please note that I reserve the right to decline any contributions that do not follow the guidelines or do not fit the style of the theme. 33 | 34 | Big Thanks to [Fakedonald's by Samuele Pignone](https://marketplace.visualstudio.com/items?itemName=SamuelePignone.fakedonalds) for the inspiration 🎉🎉🙇‍♂️ 35 | -------------------------------------------------------------------------------- /themes/Jollifake-color-theme.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "JolliFake", 3 | "type": "light", 4 | "semanticHighlighting": true, 5 | "semanticTokenColors": { 6 | "enumMember": { 7 | "foreground": "#a80c13" 8 | }, 9 | "variable.constant": { 10 | "foreground": "#a80c13" 11 | }, 12 | "variable.defaultLibrary": { 13 | "foreground": "#a80c13" 14 | } 15 | }, 16 | "tokenColors": [ 17 | { 18 | "name": "unison punctuation", 19 | "scope": "punctuation.definition.delayed.unison,punctuation.definition.list.begin.unison,punctuation.definition.list.end.unison,punctuation.definition.ability.begin.unison,punctuation.definition.ability.end.unison,punctuation.operator.assignment.as.unison,punctuation.separator.pipe.unison,punctuation.separator.delimiter.unison,punctuation.definition.hash.unison", 20 | "settings": { 21 | "foreground": "#a80c13" 22 | } 23 | }, 24 | { 25 | "name": "haskell variable generic-type", 26 | "scope": "variable.other.generic-type.haskell", 27 | "settings": { 28 | "foreground": "#a80c13" 29 | } 30 | }, 31 | { 32 | "name": "haskell storage type", 33 | "scope": "storage.type.haskell", 34 | "settings": { 35 | "foreground": "#a80c13" 36 | } 37 | }, 38 | { 39 | "name": "support.variable.magic.python", 40 | "scope": "support.variable.magic.python", 41 | "settings": { 42 | "foreground": "#a80c13" 43 | } 44 | }, 45 | { 46 | "name": "punctuation.separator.parameters.python", 47 | "scope": "punctuation.separator.period.python,punctuation.separator.element.python,punctuation.parenthesis.begin.python,punctuation.parenthesis.end.python", 48 | "settings": { 49 | "foreground": "#a80c13" 50 | } 51 | }, 52 | { 53 | "name": "variable.parameter.function.language.special.self.python", 54 | "scope": "variable.parameter.function.language.special.self.python", 55 | "settings": { 56 | "foreground": "#a80c13" 57 | } 58 | }, 59 | { 60 | "name": "storage.modifier.lifetime.rust", 61 | "scope": "storage.modifier.lifetime.rust", 62 | "settings": { 63 | "foreground": "#a80c13" 64 | } 65 | }, 66 | { 67 | "name": "support.function.std.rust", 68 | "scope": "support.function.std.rust", 69 | "settings": { 70 | "foreground": "#a80c13" 71 | } 72 | }, 73 | { 74 | "name": "entity.name.lifetime.rust", 75 | "scope": "entity.name.lifetime.rust", 76 | "settings": { 77 | "foreground": "#a80c13" 78 | } 79 | }, 80 | { 81 | "name": "variable.language.rust", 82 | "scope": "variable.language.rust", 83 | "settings": { 84 | "foreground": "#a80c13" 85 | } 86 | }, 87 | { 88 | "name": "support.constant.edge", 89 | "scope": "support.constant.edge", 90 | "settings": { 91 | "foreground": "#a80c13" 92 | } 93 | }, 94 | { 95 | "name": "regexp constant character-class", 96 | "scope": "constant.other.character-class.regexp", 97 | "settings": { 98 | "foreground": "#a80c13" 99 | } 100 | }, 101 | { 102 | "name": "regexp operator.quantifier", 103 | "scope": "keyword.operator.quantifier.regexp", 104 | "settings": { 105 | "foreground": "#a80c13" 106 | } 107 | }, 108 | { 109 | "name": "punctuation.definition", 110 | "scope": "punctuation.definition.string.begin,punctuation.definition.string.end", 111 | "settings": { 112 | "foreground": "#a80c13" 113 | } 114 | }, 115 | { 116 | "name": "Text", 117 | "scope": "variable.parameter.function", 118 | "settings": { 119 | "foreground": "#a80c13" 120 | } 121 | }, 122 | { 123 | "name": "Comment Markup Link", 124 | "scope": "comment markup.link", 125 | "settings": { 126 | "foreground": "#a80c13" 127 | } 128 | }, 129 | { 130 | "name": "markup diff", 131 | "scope": "markup.changed.diff", 132 | "settings": { 133 | "foreground": "#a80c13" 134 | } 135 | }, 136 | { 137 | "name": "diff", 138 | "scope": "meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff", 139 | "settings": { 140 | "foreground": "#a80c13" 141 | } 142 | }, 143 | { 144 | "name": "inserted.diff", 145 | "scope": "markup.inserted.diff", 146 | "settings": { 147 | "foreground": "#a80c13" 148 | } 149 | }, 150 | { 151 | "name": "deleted.diff", 152 | "scope": "markup.deleted.diff", 153 | "settings": { 154 | "foreground": "#a80c13" 155 | } 156 | }, 157 | { 158 | "name": "c++ function", 159 | "scope": "meta.function.c,meta.function.cpp", 160 | "settings": { 161 | "foreground": "#a80c13" 162 | } 163 | }, 164 | { 165 | "name": "c++ block", 166 | "scope": "punctuation.section.block.begin.bracket.curly.cpp,punctuation.section.block.end.bracket.curly.cpp,punctuation.terminator.statement.c,punctuation.section.block.begin.bracket.curly.c,punctuation.section.block.end.bracket.curly.c,punctuation.section.parens.begin.bracket.round.c,punctuation.section.parens.end.bracket.round.c,punctuation.section.parameters.begin.bracket.round.c,punctuation.section.parameters.end.bracket.round.c", 167 | "settings": { 168 | "foreground": "#a80c13" 169 | } 170 | }, 171 | { 172 | "name": "js/ts punctuation separator key-value", 173 | "scope": "punctuation.separator.key-value", 174 | "settings": { 175 | "foreground": "#a80c13" 176 | } 177 | }, 178 | { 179 | "name": "js/ts import keyword", 180 | "scope": "keyword.operator.expression.import", 181 | "settings": { 182 | "foreground": "#a80c13" 183 | } 184 | }, 185 | { 186 | "name": "math js/ts", 187 | "scope": "support.constant.math", 188 | "settings": { 189 | "foreground": "#a80c13" 190 | } 191 | }, 192 | { 193 | "name": "math property js/ts", 194 | "scope": "support.constant.property.math", 195 | "settings": { 196 | "foreground": "#a80c13" 197 | } 198 | }, 199 | { 200 | "name": "js/ts variable.other.constant", 201 | "scope": "variable.other.constant", 202 | "settings": { 203 | "foreground": "#a80c13" 204 | } 205 | }, 206 | { 207 | "name": "java type", 208 | "scope": [ 209 | "storage.type.annotation.java", 210 | "storage.type.object.array.java" 211 | ], 212 | "settings": { 213 | "foreground": "#a80c13" 214 | } 215 | }, 216 | { 217 | "name": "java source", 218 | "scope": "source.java", 219 | "settings": { 220 | "foreground": "#a80c13" 221 | } 222 | }, 223 | { 224 | "name": "java modifier.import", 225 | "scope": "punctuation.section.block.begin.java,punctuation.section.block.end.java,punctuation.definition.method-parameters.begin.java,punctuation.definition.method-parameters.end.java,meta.method.identifier.java,punctuation.section.method.begin.java,punctuation.section.method.end.java,punctuation.terminator.java,punctuation.section.class.begin.java,punctuation.section.class.end.java,punctuation.section.inner-class.begin.java,punctuation.section.inner-class.end.java,meta.method-call.java,punctuation.section.class.begin.bracket.curly.java,punctuation.section.class.end.bracket.curly.java,punctuation.section.method.begin.bracket.curly.java,punctuation.section.method.end.bracket.curly.java,punctuation.separator.period.java,punctuation.bracket.angle.java,punctuation.definition.annotation.java,meta.method.body.java", 226 | "settings": { 227 | "foreground": "#a80c13" 228 | } 229 | }, 230 | { 231 | "name": "java modifier.import", 232 | "scope": "meta.method.java", 233 | "settings": { 234 | "foreground": "#a80c13" 235 | } 236 | }, 237 | { 238 | "name": "java modifier.import", 239 | "scope": "storage.modifier.import.java,storage.type.java,storage.type.generic.java", 240 | "settings": { 241 | "foreground": "#a80c13" 242 | } 243 | }, 244 | { 245 | "name": "java instanceof", 246 | "scope": "keyword.operator.instanceof.java", 247 | "settings": { 248 | "foreground": "#a80c13" 249 | } 250 | }, 251 | { 252 | "name": "java variable.name", 253 | "scope": "meta.definition.variable.name.java", 254 | "settings": { 255 | "foreground": "#a80c13" 256 | } 257 | }, 258 | { 259 | "name": "operator logical", 260 | "scope": "keyword.operator.logical", 261 | "settings": { 262 | "foreground": "#a80c13" 263 | } 264 | }, 265 | { 266 | "name": "operator bitwise", 267 | "scope": "keyword.operator.bitwise", 268 | "settings": { 269 | "foreground": "#a80c13" 270 | } 271 | }, 272 | { 273 | "name": "operator channel", 274 | "scope": "keyword.operator.channel", 275 | "settings": { 276 | "foreground": "#a80c13" 277 | } 278 | }, 279 | { 280 | "name": "support.constant.property-value.scss", 281 | "scope": "support.constant.property-value.scss,support.constant.property-value.css", 282 | "settings": { 283 | "foreground": "#a80c13" 284 | } 285 | }, 286 | { 287 | "name": "CSS/SCSS/LESS Operators", 288 | "scope": "keyword.operator.css,keyword.operator.scss,keyword.operator.less", 289 | "settings": { 290 | "foreground": "#a80c13" 291 | } 292 | }, 293 | { 294 | "name": "css color standard name", 295 | "scope": "support.constant.color.w3c-standard-color-name.css,support.constant.color.w3c-standard-color-name.scss", 296 | "settings": { 297 | "foreground": "#a80c13" 298 | } 299 | }, 300 | { 301 | "name": "css comma", 302 | "scope": "punctuation.separator.list.comma.css", 303 | "settings": { 304 | "foreground": "#a80c13" 305 | } 306 | }, 307 | { 308 | "name": "css attribute-name.id", 309 | "scope": "support.constant.color.w3c-standard-color-name.css", 310 | "settings": { 311 | "foreground": "#a80c13" 312 | } 313 | }, 314 | { 315 | "name": "css property-name", 316 | "scope": "support.type.vendored.property-name.css", 317 | "settings": { 318 | "foreground": "#a80c13" 319 | } 320 | }, 321 | { 322 | "name": "js/ts module", 323 | "scope": "support.module.node,support.type.object.module,support.module.node", 324 | "settings": { 325 | "foreground": "#a80c13" 326 | } 327 | }, 328 | { 329 | "name": "entity.name.type.module", 330 | "scope": "entity.name.type.module", 331 | "settings": { 332 | "foreground": "#a80c13" 333 | } 334 | }, 335 | { 336 | "name": "js variable readwrite", 337 | "scope": "variable.other.readwrite,meta.object-literal.key,support.variable.property,support.variable.object.process,support.variable.object.node", 338 | "settings": { 339 | "foreground": "#a80c13" 340 | } 341 | }, 342 | { 343 | "name": "js/ts json", 344 | "scope": "support.constant.json", 345 | "settings": { 346 | "foreground": "#a80c13" 347 | } 348 | }, 349 | { 350 | "name": "js/ts Keyword", 351 | "scope": [ 352 | "keyword.operator.expression.instanceof", 353 | "keyword.operator.new", 354 | "keyword.operator.ternary", 355 | "keyword.operator.optional", 356 | "keyword.operator.expression.keyof" 357 | ], 358 | "settings": { 359 | "foreground": "#a80c13" 360 | } 361 | }, 362 | { 363 | "name": "js/ts console", 364 | "scope": "support.type.object.console", 365 | "settings": { 366 | "foreground": "#a80c13" 367 | } 368 | }, 369 | { 370 | "name": "js/ts support.variable.property.process", 371 | "scope": "support.variable.property.process", 372 | "settings": { 373 | "foreground": "#a80c13" 374 | } 375 | }, 376 | { 377 | "name": "js console function", 378 | "scope": "entity.name.function,support.function.console", 379 | "settings": { 380 | "foreground": "#a80c13" 381 | } 382 | }, 383 | { 384 | "name": "keyword.operator.misc.rust", 385 | "scope": "keyword.operator.misc.rust", 386 | "settings": { 387 | "foreground": "#a80c13" 388 | } 389 | }, 390 | { 391 | "name": "keyword.operator.sigil.rust", 392 | "scope": "keyword.operator.sigil.rust", 393 | "settings": { 394 | "foreground": "#a80c13" 395 | } 396 | }, 397 | { 398 | "name": "operator", 399 | "scope": "keyword.operator.delete", 400 | "settings": { 401 | "foreground": "#a80c13" 402 | } 403 | }, 404 | { 405 | "name": "js dom", 406 | "scope": "support.type.object.dom", 407 | "settings": { 408 | "foreground": "#a80c13" 409 | } 410 | }, 411 | { 412 | "name": "js dom variable", 413 | "scope": "support.variable.dom,support.variable.property.dom", 414 | "settings": { 415 | "foreground": "#a80c13" 416 | } 417 | }, 418 | { 419 | "name": "keyword.operator", 420 | "scope": "keyword.operator.arithmetic,keyword.operator.comparison,keyword.operator.decrement,keyword.operator.increment,keyword.operator.relational", 421 | "settings": { 422 | "foreground": "#a80c13" 423 | } 424 | }, 425 | { 426 | "name": "C operator assignment", 427 | "scope": "keyword.operator.assignment.c,keyword.operator.comparison.c,keyword.operator.c,keyword.operator.increment.c,keyword.operator.decrement.c,keyword.operator.bitwise.shift.c,keyword.operator.assignment.cpp,keyword.operator.comparison.cpp,keyword.operator.cpp,keyword.operator.increment.cpp,keyword.operator.decrement.cpp,keyword.operator.bitwise.shift.cpp", 428 | "settings": { 429 | "foreground": "#a80c13" 430 | } 431 | }, 432 | { 433 | "name": "Punctuation", 434 | "scope": "punctuation.separator.delimiter", 435 | "settings": { 436 | "foreground": "#a80c13" 437 | } 438 | }, 439 | { 440 | "name": "Other punctuation .c", 441 | "scope": "punctuation.separator.c,punctuation.separator.cpp", 442 | "settings": { 443 | "foreground": "#a80c13" 444 | } 445 | }, 446 | { 447 | "name": "C type posix-reserved", 448 | "scope": "support.type.posix-reserved.c,support.type.posix-reserved.cpp", 449 | "settings": { 450 | "foreground": "#a80c13" 451 | } 452 | }, 453 | { 454 | "name": "keyword.operator.sizeof.c", 455 | "scope": "keyword.operator.sizeof.c,keyword.operator.sizeof.cpp", 456 | "settings": { 457 | "foreground": "#a80c13" 458 | } 459 | }, 460 | { 461 | "name": "python parameter", 462 | "scope": "variable.parameter.function.language.python", 463 | "settings": { 464 | "foreground": "#a80c13" 465 | } 466 | }, 467 | { 468 | "name": "python type", 469 | "scope": "support.type.python", 470 | "settings": { 471 | "foreground": "#a80c13" 472 | } 473 | }, 474 | { 475 | "name": "python logical", 476 | "scope": "keyword.operator.logical.python", 477 | "settings": { 478 | "foreground": "#a80c13" 479 | } 480 | }, 481 | { 482 | "name": "pyCs", 483 | "scope": "variable.parameter.function.python", 484 | "settings": { 485 | "foreground": "#a80c13" 486 | } 487 | }, 488 | { 489 | "name": "python block", 490 | "scope": "punctuation.definition.arguments.begin.python,punctuation.definition.arguments.end.python,punctuation.separator.arguments.python,punctuation.definition.list.begin.python,punctuation.definition.list.end.python", 491 | "settings": { 492 | "foreground": "#a80c13" 493 | } 494 | }, 495 | { 496 | "name": "python function-call.generic", 497 | "scope": "meta.function-call.generic.python", 498 | "settings": { 499 | "foreground": "#a80c13" 500 | } 501 | }, 502 | { 503 | "name": "python placeholder reset to normal string", 504 | "scope": "constant.character.format.placeholder.other.python", 505 | "settings": { 506 | "foreground": "#a80c13" 507 | } 508 | }, 509 | { 510 | "name": "Operators", 511 | "scope": "keyword.operator", 512 | "settings": { 513 | "foreground": "#a80c13" 514 | } 515 | }, 516 | { 517 | "name": "Compound Assignment Operators", 518 | "scope": "keyword.operator.assignment.compound", 519 | "settings": { 520 | "foreground": "#a80c13" 521 | } 522 | }, 523 | { 524 | "name": "Compound Assignment Operators js/ts", 525 | "scope": "keyword.operator.assignment.compound.js,keyword.operator.assignment.compound.ts", 526 | "settings": { 527 | "foreground": "#a80c13" 528 | } 529 | }, 530 | { 531 | "name": "Keywords", 532 | "scope": "keyword", 533 | "settings": { 534 | "foreground": "#a80c13" 535 | } 536 | }, 537 | { 538 | "name": "Namespaces", 539 | "scope": "entity.name.namespace", 540 | "settings": { 541 | "foreground": "#a80c13" 542 | } 543 | }, 544 | { 545 | "name": "Variables", 546 | "scope": "variable", 547 | "settings": { 548 | "foreground": "#a80c13" 549 | } 550 | }, 551 | { 552 | "name": "Variables", 553 | "scope": "variable.c", 554 | "settings": { 555 | "foreground": "#a80c13" 556 | } 557 | }, 558 | { 559 | "name": "Language variables", 560 | "scope": "variable.language", 561 | "settings": { 562 | "foreground": "#a80c13" 563 | } 564 | }, 565 | { 566 | "name": "Java Variables", 567 | "scope": "token.variable.parameter.java", 568 | "settings": { 569 | "foreground": "#a80c13" 570 | } 571 | }, 572 | { 573 | "name": "Java Imports", 574 | "scope": "import.storage.java", 575 | "settings": { 576 | "foreground": "#a80c13" 577 | } 578 | }, 579 | { 580 | "name": "Packages", 581 | "scope": "token.package.keyword", 582 | "settings": { 583 | "foreground": "#a80c13" 584 | } 585 | }, 586 | { 587 | "name": "Packages", 588 | "scope": "token.package", 589 | "settings": { 590 | "foreground": "#a80c13" 591 | } 592 | }, 593 | { 594 | "name": "Functions", 595 | "scope": [ 596 | "entity.name.function", 597 | "meta.require", 598 | "support.function.any-method", 599 | "variable.function" 600 | ], 601 | "settings": { 602 | "foreground": "#a80c13" 603 | } 604 | }, 605 | { 606 | "name": "Classes", 607 | "scope": "entity.name.type.namespace", 608 | "settings": { 609 | "foreground": "#a80c13" 610 | } 611 | }, 612 | { 613 | "name": "Classes", 614 | "scope": "support.class, entity.name.type.class", 615 | "settings": { 616 | "foreground": "#a80c13" 617 | } 618 | }, 619 | { 620 | "name": "Class name", 621 | "scope": "entity.name.class.identifier.namespace.type", 622 | "settings": { 623 | "foreground": "#a80c13" 624 | } 625 | }, 626 | { 627 | "name": "Class name", 628 | "scope": [ 629 | "entity.name.class", 630 | "variable.other.class.js", 631 | "variable.other.class.ts" 632 | ], 633 | "settings": { 634 | "foreground": "#a80c13" 635 | } 636 | }, 637 | { 638 | "name": "Class name php", 639 | "scope": "variable.other.class.php", 640 | "settings": { 641 | "foreground": "#a80c13" 642 | } 643 | }, 644 | { 645 | "name": "Type Name", 646 | "scope": "entity.name.type", 647 | "settings": { 648 | "foreground": "#a80c13" 649 | } 650 | }, 651 | { 652 | "name": "Keyword Control", 653 | "scope": "keyword.control", 654 | "settings": { 655 | "foreground": "#a80c13" 656 | } 657 | }, 658 | { 659 | "name": "Control Elements", 660 | "scope": "control.elements, keyword.operator.less", 661 | "settings": { 662 | "foreground": "#a80c13" 663 | } 664 | }, 665 | { 666 | "name": "Methods", 667 | "scope": "keyword.other.special-method", 668 | "settings": { 669 | "foreground": "#a80c13" 670 | } 671 | }, 672 | { 673 | "name": "Storage", 674 | "scope": "storage", 675 | "settings": { 676 | "foreground": "#a80c13" 677 | } 678 | }, 679 | { 680 | "name": "Storage JS TS", 681 | "scope": "token.storage", 682 | "settings": { 683 | "foreground": "#a80c13" 684 | } 685 | }, 686 | { 687 | "name": "Source Js Keyword Operator Delete,source Js Keyword Operator In,source Js Keyword Operator Of,source Js Keyword Operator Instanceof,source Js Keyword Operator New,source Js Keyword Operator Typeof,source Js Keyword Operator Void", 688 | "scope": "keyword.operator.expression.delete,keyword.operator.expression.in,keyword.operator.expression.of,keyword.operator.expression.instanceof,keyword.operator.new,keyword.operator.expression.typeof,keyword.operator.expression.void", 689 | "settings": { 690 | "foreground": "#a80c13" 691 | } 692 | }, 693 | { 694 | "name": "Java Storage", 695 | "scope": "token.storage.type.java", 696 | "settings": { 697 | "foreground": "#a80c13" 698 | } 699 | }, 700 | { 701 | "name": "Support", 702 | "scope": "support.function", 703 | "settings": { 704 | "foreground": "#a80c13" 705 | } 706 | }, 707 | { 708 | "name": "Support type", 709 | "scope": "support.type.property-name", 710 | "settings": { 711 | "foreground": "#a80c13" 712 | } 713 | }, 714 | { 715 | "name": "Support type", 716 | "scope": "support.constant.property-value", 717 | "settings": { 718 | "foreground": "#a80c13" 719 | } 720 | }, 721 | { 722 | "name": "Support type", 723 | "scope": "support.constant.font-name", 724 | "settings": { 725 | "foreground": "#a80c13" 726 | } 727 | }, 728 | { 729 | "name": "Meta tag", 730 | "scope": "meta.tag", 731 | "settings": { 732 | "foreground": "#a80c13" 733 | } 734 | }, 735 | { 736 | "name": "Strings", 737 | "scope": "string", 738 | "settings": { 739 | "foreground": "#a80c13" 740 | } 741 | }, 742 | { 743 | "name": "Inherited Class", 744 | "scope": "entity.other.inherited-class", 745 | "settings": { 746 | "foreground": "#a80c13" 747 | } 748 | }, 749 | { 750 | "name": "Constant other symbol", 751 | "scope": "constant.other.symbol", 752 | "settings": { 753 | "foreground": "#a80c13" 754 | } 755 | }, 756 | { 757 | "name": "Integers", 758 | "scope": "constant.numeric", 759 | "settings": { 760 | "foreground": "#a80c13" 761 | } 762 | }, 763 | { 764 | "name": "Constants", 765 | "scope": "constant", 766 | "settings": { 767 | "foreground": "#a80c13" 768 | } 769 | }, 770 | { 771 | "name": "Constants", 772 | "scope": "punctuation.definition.constant", 773 | "settings": { 774 | "foreground": "#a80c13" 775 | } 776 | }, 777 | { 778 | "name": "Tags", 779 | "scope": "entity.name.tag", 780 | "settings": { 781 | "foreground": "#a80c13" 782 | } 783 | }, 784 | { 785 | "name": "Attributes", 786 | "scope": "entity.other.attribute-name", 787 | "settings": { 788 | "foreground": "#a80c13" 789 | } 790 | }, 791 | { 792 | "name": "Attribute IDs", 793 | "scope": "entity.other.attribute-name.id", 794 | "settings": { 795 | "fontStyle": "normal", 796 | "foreground": "#a80c13" 797 | } 798 | }, 799 | { 800 | "name": "Attribute class", 801 | "scope": "entity.other.attribute-name.class.css", 802 | "settings": { 803 | "fontStyle": "normal", 804 | "foreground": "#a80c13" 805 | } 806 | }, 807 | { 808 | "name": "Selector", 809 | "scope": "meta.selector", 810 | "settings": { 811 | "foreground": "#a80c13" 812 | } 813 | }, 814 | { 815 | "name": "Headings", 816 | "scope": "markup.heading", 817 | "settings": { 818 | "foreground": "#a80c13" 819 | } 820 | }, 821 | { 822 | "name": "Headings", 823 | "scope": "markup.heading punctuation.definition.heading, entity.name.section", 824 | "settings": { 825 | "foreground": "#a80c13" 826 | } 827 | }, 828 | { 829 | "name": "Units", 830 | "scope": "keyword.other.unit", 831 | "settings": { 832 | "foreground": "#a80c13" 833 | } 834 | }, 835 | { 836 | "name": "Bold", 837 | "scope": "markup.bold,todo.bold", 838 | "settings": { 839 | "foreground": "#a80c13" 840 | } 841 | }, 842 | { 843 | "name": "Bold", 844 | "scope": "punctuation.definition.bold", 845 | "settings": { 846 | "foreground": "#a80c13" 847 | } 848 | }, 849 | { 850 | "name": "markup Italic", 851 | "scope": "markup.italic, punctuation.definition.italic,todo.emphasis", 852 | "settings": { 853 | "foreground": "#a80c13" 854 | } 855 | }, 856 | { 857 | "name": "emphasis md", 858 | "scope": "emphasis md", 859 | "settings": { 860 | "foreground": "#a80c13" 861 | } 862 | }, 863 | { 864 | "name": "[VSCODE-CUSTOM] Markdown headings", 865 | "scope": "entity.name.section.markdown", 866 | "settings": { 867 | "foreground": "#a80c13" 868 | } 869 | }, 870 | { 871 | "name": "[VSCODE-CUSTOM] Markdown heading Punctuation Definition", 872 | "scope": "punctuation.definition.heading.markdown", 873 | "settings": { 874 | "foreground": "#a80c13" 875 | } 876 | }, 877 | { 878 | "name": "punctuation.definition.list.begin.markdown", 879 | "scope": "punctuation.definition.list.begin.markdown", 880 | "settings": { 881 | "foreground": "#a80c13" 882 | } 883 | }, 884 | { 885 | "name": "[VSCODE-CUSTOM] Markdown heading setext", 886 | "scope": "markup.heading.setext", 887 | "settings": { 888 | "foreground": "#a80c13" 889 | } 890 | }, 891 | { 892 | "name": "[VSCODE-CUSTOM] Markdown Punctuation Definition Bold", 893 | "scope": "punctuation.definition.bold.markdown", 894 | "settings": { 895 | "foreground": "#a80c13" 896 | } 897 | }, 898 | { 899 | "name": "[VSCODE-CUSTOM] Markdown Inline Raw", 900 | "scope": "markup.inline.raw.markdown", 901 | "settings": { 902 | "foreground": "#a80c13" 903 | } 904 | }, 905 | { 906 | "name": "[VSCODE-CUSTOM] Markdown Inline Raw", 907 | "scope": "markup.inline.raw.string.markdown", 908 | "settings": { 909 | "foreground": "#a80c13" 910 | } 911 | }, 912 | { 913 | "name": "[VSCODE-CUSTOM] Markdown List Punctuation Definition", 914 | "scope": "punctuation.definition.list.markdown", 915 | "settings": { 916 | "foreground": "#a80c13" 917 | } 918 | }, 919 | { 920 | "name": "[VSCODE-CUSTOM] Markdown Punctuation Definition String", 921 | "scope": [ 922 | "punctuation.definition.string.begin.markdown", 923 | "punctuation.definition.string.end.markdown", 924 | "punctuation.definition.metadata.markdown" 925 | ], 926 | "settings": { 927 | "foreground": "#a80c13" 928 | } 929 | }, 930 | { 931 | "name": "beginning.punctuation.definition.list.markdown", 932 | "scope": [ 933 | "beginning.punctuation.definition.list.markdown" 934 | ], 935 | "settings": { 936 | "foreground": "#a80c13" 937 | } 938 | }, 939 | { 940 | "name": "[VSCODE-CUSTOM] Markdown Punctuation Definition Link", 941 | "scope": "punctuation.definition.metadata.markdown", 942 | "settings": { 943 | "foreground": "#a80c13" 944 | } 945 | }, 946 | { 947 | "name": "[VSCODE-CUSTOM] Markdown Underline Link/Image", 948 | "scope": "markup.underline.link.markdown,markup.underline.link.image.markdown", 949 | "settings": { 950 | "foreground": "#a80c13" 951 | } 952 | }, 953 | { 954 | "name": "[VSCODE-CUSTOM] Markdown Link Title/Description", 955 | "scope": "string.other.link.title.markdown,string.other.link.description.markdown", 956 | "settings": { 957 | "foreground": "#a80c13" 958 | } 959 | }, 960 | { 961 | "name": "Regular Expressions", 962 | "scope": "string.regexp", 963 | "settings": { 964 | "foreground": "#a80c13" 965 | } 966 | }, 967 | { 968 | "name": "Escape Characters", 969 | "scope": "constant.character.escape", 970 | "settings": { 971 | "foreground": "#a80c13" 972 | } 973 | }, 974 | { 975 | "name": "Embedded", 976 | "scope": "punctuation.section.embedded, variable.interpolation", 977 | "settings": { 978 | "foreground": "#a80c13" 979 | } 980 | }, 981 | { 982 | "name": "Embedded", 983 | "scope": "punctuation.section.embedded.begin,punctuation.section.embedded.end", 984 | "settings": { 985 | "foreground": "#a80c13" 986 | } 987 | }, 988 | { 989 | "name": "illegal", 990 | "scope": "invalid.illegal", 991 | "settings": { 992 | "foreground": "#ffffff" 993 | } 994 | }, 995 | { 996 | "name": "illegal", 997 | "scope": "invalid.illegal.bad-ampersand.html", 998 | "settings": { 999 | "foreground": "#a80c13" 1000 | } 1001 | }, 1002 | { 1003 | "name": "Broken", 1004 | "scope": "invalid.broken", 1005 | "settings": { 1006 | "foreground": "#ffffff" 1007 | } 1008 | }, 1009 | { 1010 | "name": "Deprecated", 1011 | "scope": "invalid.deprecated", 1012 | "settings": { 1013 | "foreground": "#ffffff" 1014 | } 1015 | }, 1016 | { 1017 | "name": "Unimplemented", 1018 | "scope": "invalid.unimplemented", 1019 | "settings": { 1020 | "foreground": "#ffffff" 1021 | } 1022 | }, 1023 | { 1024 | "name": "Source Json Meta Structure Dictionary Json > String Quoted Json", 1025 | "scope": "source.json meta.structure.dictionary.json > string.quoted.json", 1026 | "settings": { 1027 | "foreground": "#a80c13" 1028 | } 1029 | }, 1030 | { 1031 | "name": "Source Json Meta Structure Dictionary Json > String Quoted Json > Punctuation String", 1032 | "scope": "source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string", 1033 | "settings": { 1034 | "foreground": "#a80c13" 1035 | } 1036 | }, 1037 | { 1038 | "name": "Source Json Meta Structure Dictionary Json > Value Json > String Quoted Json,source Json Meta Structure Array Json > Value Json > String Quoted Json,source Json Meta Structure Dictionary Json > Value Json > String Quoted Json > Punctuation,source Json Meta Structure Array Json > Value Json > String Quoted Json > Punctuation", 1039 | "scope": "source.json meta.structure.dictionary.json > value.json > string.quoted.json,source.json meta.structure.array.json > value.json > string.quoted.json,source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation,source.json meta.structure.array.json > value.json > string.quoted.json > punctuation", 1040 | "settings": { 1041 | "foreground": "#a80c13" 1042 | } 1043 | }, 1044 | { 1045 | "name": "Source Json Meta Structure Dictionary Json > Constant Language Json,source Json Meta Structure Array Json > Constant Language Json", 1046 | "scope": "source.json meta.structure.dictionary.json > constant.language.json,source.json meta.structure.array.json > constant.language.json", 1047 | "settings": { 1048 | "foreground": "#a80c13" 1049 | } 1050 | }, 1051 | { 1052 | "name": "[VSCODE-CUSTOM] JSON Property Name", 1053 | "scope": "support.type.property-name.json", 1054 | "settings": { 1055 | "foreground": "#a80c13" 1056 | } 1057 | }, 1058 | { 1059 | "name": "[VSCODE-CUSTOM] JSON Punctuation for Property Name", 1060 | "scope": "support.type.property-name.json punctuation", 1061 | "settings": { 1062 | "foreground": "#a80c13" 1063 | } 1064 | }, 1065 | { 1066 | "name": "laravel blade tag", 1067 | "scope": "text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade", 1068 | "settings": { 1069 | "foreground": "#a80c13" 1070 | } 1071 | }, 1072 | { 1073 | "name": "laravel blade @", 1074 | "scope": "text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade", 1075 | "settings": { 1076 | "foreground": "#a80c13" 1077 | } 1078 | }, 1079 | { 1080 | "name": "use statement for other classes", 1081 | "scope": "support.other.namespace.use.php,support.other.namespace.use-as.php,support.other.namespace.php,entity.other.alias.php,meta.interface.php", 1082 | "settings": { 1083 | "foreground": "#a80c13" 1084 | } 1085 | }, 1086 | { 1087 | "name": "error suppression", 1088 | "scope": "keyword.operator.error-control.php", 1089 | "settings": { 1090 | "foreground": "#a80c13" 1091 | } 1092 | }, 1093 | { 1094 | "name": "php instanceof", 1095 | "scope": "keyword.operator.type.php", 1096 | "settings": { 1097 | "foreground": "#a80c13" 1098 | } 1099 | }, 1100 | { 1101 | "name": "style double quoted array index normal begin", 1102 | "scope": "punctuation.section.array.begin.php", 1103 | "settings": { 1104 | "foreground": "#a80c13" 1105 | } 1106 | }, 1107 | { 1108 | "name": "style double quoted array index normal end", 1109 | "scope": "punctuation.section.array.end.php", 1110 | "settings": { 1111 | "foreground": "#a80c13" 1112 | } 1113 | }, 1114 | { 1115 | "name": "php illegal.non-null-typehinted", 1116 | "scope": "invalid.illegal.non-null-typehinted.php", 1117 | "settings": { 1118 | "foreground": "#f44747" 1119 | } 1120 | }, 1121 | { 1122 | "name": "php types", 1123 | "scope": "storage.type.php,meta.other.type.phpdoc.php,keyword.other.type.php,keyword.other.array.phpdoc.php", 1124 | "settings": { 1125 | "foreground": "#a80c13" 1126 | } 1127 | }, 1128 | { 1129 | "name": "php call-function", 1130 | "scope": "meta.function-call.php,meta.function-call.object.php,meta.function-call.static.php", 1131 | "settings": { 1132 | "foreground": "#a80c13" 1133 | } 1134 | }, 1135 | { 1136 | "name": "php function-resets", 1137 | "scope": "punctuation.definition.parameters.begin.bracket.round.php,punctuation.definition.parameters.end.bracket.round.php,punctuation.separator.delimiter.php,punctuation.section.scope.begin.php,punctuation.section.scope.end.php,punctuation.terminator.expression.php,punctuation.definition.arguments.begin.bracket.round.php,punctuation.definition.arguments.end.bracket.round.php,punctuation.definition.storage-type.begin.bracket.round.php,punctuation.definition.storage-type.end.bracket.round.php,punctuation.definition.array.begin.bracket.round.php,punctuation.definition.array.end.bracket.round.php,punctuation.definition.begin.bracket.round.php,punctuation.definition.end.bracket.round.php,punctuation.definition.begin.bracket.curly.php,punctuation.definition.end.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php,punctuation.definition.section.switch-block.start.bracket.curly.php,punctuation.definition.section.switch-block.begin.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php", 1138 | "settings": { 1139 | "foreground": "#a80c13" 1140 | } 1141 | }, 1142 | { 1143 | "name": "support php constants", 1144 | "scope": "support.constant.core.rust", 1145 | "settings": { 1146 | "foreground": "#a80c13" 1147 | } 1148 | }, 1149 | { 1150 | "name": "support php constants", 1151 | "scope": "support.constant.ext.php,support.constant.std.php,support.constant.core.php,support.constant.parser-token.php", 1152 | "settings": { 1153 | "foreground": "#a80c13" 1154 | } 1155 | }, 1156 | { 1157 | "name": "php goto", 1158 | "scope": "entity.name.goto-label.php,support.other.php", 1159 | "settings": { 1160 | "foreground": "#a80c13" 1161 | } 1162 | }, 1163 | { 1164 | "name": "php logical/bitwise operator", 1165 | "scope": "keyword.operator.logical.php,keyword.operator.bitwise.php,keyword.operator.arithmetic.php", 1166 | "settings": { 1167 | "foreground": "#a80c13" 1168 | } 1169 | }, 1170 | { 1171 | "name": "php regexp operator", 1172 | "scope": "keyword.operator.regexp.php", 1173 | "settings": { 1174 | "foreground": "#a80c13" 1175 | } 1176 | }, 1177 | { 1178 | "name": "php comparison", 1179 | "scope": "keyword.operator.comparison.php", 1180 | "settings": { 1181 | "foreground": "#a80c13" 1182 | } 1183 | }, 1184 | { 1185 | "name": "php heredoc/nowdoc", 1186 | "scope": "keyword.operator.heredoc.php,keyword.operator.nowdoc.php", 1187 | "settings": { 1188 | "foreground": "#a80c13" 1189 | } 1190 | }, 1191 | { 1192 | "name": "python function decorator @", 1193 | "scope": "meta.function.decorator.python", 1194 | "settings": { 1195 | "foreground": "#a80c13" 1196 | } 1197 | }, 1198 | { 1199 | "name": "python function support", 1200 | "scope": "support.token.decorator.python,meta.function.decorator.identifier.python", 1201 | "settings": { 1202 | "foreground": "#a80c13" 1203 | } 1204 | }, 1205 | { 1206 | "name": "parameter function js/ts", 1207 | "scope": "function.parameter", 1208 | "settings": { 1209 | "foreground": "#a80c13" 1210 | } 1211 | }, 1212 | { 1213 | "name": "brace function", 1214 | "scope": "function.brace", 1215 | "settings": { 1216 | "foreground": "#a80c13" 1217 | } 1218 | }, 1219 | { 1220 | "name": "parameter function ruby cs", 1221 | "scope": "function.parameter.ruby, function.parameter.cs", 1222 | "settings": { 1223 | "foreground": "#a80c13" 1224 | } 1225 | }, 1226 | { 1227 | "name": "constant.language.symbol.ruby", 1228 | "scope": "constant.language.symbol.ruby", 1229 | "settings": { 1230 | "foreground": "#a80c13" 1231 | } 1232 | }, 1233 | { 1234 | "name": "rgb-value", 1235 | "scope": "rgb-value", 1236 | "settings": { 1237 | "foreground": "#a80c13" 1238 | } 1239 | }, 1240 | { 1241 | "name": "rgb value", 1242 | "scope": "inline-color-decoration rgb-value", 1243 | "settings": { 1244 | "foreground": "#a80c13" 1245 | } 1246 | }, 1247 | { 1248 | "name": "rgb value less", 1249 | "scope": "less rgb-value", 1250 | "settings": { 1251 | "foreground": "#a80c13" 1252 | } 1253 | }, 1254 | { 1255 | "name": "sass selector", 1256 | "scope": "selector.sass", 1257 | "settings": { 1258 | "foreground": "#a80c13" 1259 | } 1260 | }, 1261 | { 1262 | "name": "ts primitive/builtin types", 1263 | "scope": "support.type.primitive.ts,support.type.builtin.ts,support.type.primitive.tsx,support.type.builtin.tsx", 1264 | "settings": { 1265 | "foreground": "#a80c13" 1266 | } 1267 | }, 1268 | { 1269 | "name": "block scope", 1270 | "scope": "block.scope.end,block.scope.begin", 1271 | "settings": { 1272 | "foreground": "#a80c13" 1273 | } 1274 | }, 1275 | { 1276 | "name": "cs storage type", 1277 | "scope": "storage.type.cs", 1278 | "settings": { 1279 | "foreground": "#a80c13" 1280 | } 1281 | }, 1282 | { 1283 | "name": "cs local variable", 1284 | "scope": "entity.name.variable.local.cs", 1285 | "settings": { 1286 | "foreground": "#a80c13" 1287 | } 1288 | }, 1289 | { 1290 | "scope": "token.info-token", 1291 | "settings": { 1292 | "foreground": "#a80c13" 1293 | } 1294 | }, 1295 | { 1296 | "scope": "token.warn-token", 1297 | "settings": { 1298 | "foreground": "#a80c13" 1299 | } 1300 | }, 1301 | { 1302 | "scope": "token.error-token", 1303 | "settings": { 1304 | "foreground": "#f44747" 1305 | } 1306 | }, 1307 | { 1308 | "scope": "token.debug-token", 1309 | "settings": { 1310 | "foreground": "#a80c13" 1311 | } 1312 | }, 1313 | { 1314 | "name": "String interpolation", 1315 | "scope": [ 1316 | "punctuation.definition.template-expression.begin", 1317 | "punctuation.definition.template-expression.end", 1318 | "punctuation.section.embedded" 1319 | ], 1320 | "settings": { 1321 | "foreground": "#a80c13" 1322 | } 1323 | }, 1324 | { 1325 | "name": "Reset JavaScript string interpolation expression", 1326 | "scope": [ 1327 | "meta.template.expression" 1328 | ], 1329 | "settings": { 1330 | "foreground": "#a80c13" 1331 | } 1332 | }, 1333 | { 1334 | "name": "Import module JS", 1335 | "scope": [ 1336 | "keyword.operator.module" 1337 | ], 1338 | "settings": { 1339 | "foreground": "#a80c13" 1340 | } 1341 | }, 1342 | { 1343 | "name": "js Flowtype", 1344 | "scope": [ 1345 | "support.type.type.flowtype" 1346 | ], 1347 | "settings": { 1348 | "foreground": "#a80c13" 1349 | } 1350 | }, 1351 | { 1352 | "name": "js Flow", 1353 | "scope": [ 1354 | "support.type.primitive" 1355 | ], 1356 | "settings": { 1357 | "foreground": "#a80c13" 1358 | } 1359 | }, 1360 | { 1361 | "name": "js class prop", 1362 | "scope": [ 1363 | "meta.property.object" 1364 | ], 1365 | "settings": { 1366 | "foreground": "#a80c13" 1367 | } 1368 | }, 1369 | { 1370 | "name": "js func parameter", 1371 | "scope": [ 1372 | "variable.parameter.function.js" 1373 | ], 1374 | "settings": { 1375 | "foreground": "#a80c13" 1376 | } 1377 | }, 1378 | { 1379 | "name": "js template literals begin", 1380 | "scope": [ 1381 | "keyword.other.template.begin" 1382 | ], 1383 | "settings": { 1384 | "foreground": "#a80c13" 1385 | } 1386 | }, 1387 | { 1388 | "name": "js template literals end", 1389 | "scope": [ 1390 | "keyword.other.template.end" 1391 | ], 1392 | "settings": { 1393 | "foreground": "#a80c13" 1394 | } 1395 | }, 1396 | { 1397 | "name": "js template literals variable braces begin", 1398 | "scope": [ 1399 | "keyword.other.substitution.begin" 1400 | ], 1401 | "settings": { 1402 | "foreground": "#a80c13" 1403 | } 1404 | }, 1405 | { 1406 | "name": "js template literals variable braces end", 1407 | "scope": [ 1408 | "keyword.other.substitution.end" 1409 | ], 1410 | "settings": { 1411 | "foreground": "#a80c13" 1412 | } 1413 | }, 1414 | { 1415 | "name": "js operator.assignment", 1416 | "scope": [ 1417 | "keyword.operator.assignment" 1418 | ], 1419 | "settings": { 1420 | "foreground": "#a80c13" 1421 | } 1422 | }, 1423 | { 1424 | "name": "go operator", 1425 | "scope": [ 1426 | "keyword.operator.assignment.go" 1427 | ], 1428 | "settings": { 1429 | "foreground": "#a80c13" 1430 | } 1431 | }, 1432 | { 1433 | "name": "go operator", 1434 | "scope": [ 1435 | "keyword.operator.arithmetic.go", 1436 | "keyword.operator.address.go" 1437 | ], 1438 | "settings": { 1439 | "foreground": "#a80c13" 1440 | } 1441 | }, 1442 | { 1443 | "name": "Go package name", 1444 | "scope": [ 1445 | "entity.name.package.go" 1446 | ], 1447 | "settings": { 1448 | "foreground": "#a80c13" 1449 | } 1450 | }, 1451 | { 1452 | "name": "elm prelude", 1453 | "scope": [ 1454 | "support.type.prelude.elm" 1455 | ], 1456 | "settings": { 1457 | "foreground": "#a80c13" 1458 | } 1459 | }, 1460 | { 1461 | "name": "elm constant", 1462 | "scope": [ 1463 | "support.constant.elm" 1464 | ], 1465 | "settings": { 1466 | "foreground": "#a80c13" 1467 | } 1468 | }, 1469 | { 1470 | "name": "template literal", 1471 | "scope": [ 1472 | "punctuation.quasi.element" 1473 | ], 1474 | "settings": { 1475 | "foreground": "#a80c13" 1476 | } 1477 | }, 1478 | { 1479 | "name": "html/pug (jade) escaped characters and entities", 1480 | "scope": [ 1481 | "constant.character.entity" 1482 | ], 1483 | "settings": { 1484 | "foreground": "#a80c13" 1485 | } 1486 | }, 1487 | { 1488 | "name": "styling css pseudo-elements/classes to be able to differentiate from classes which are the same colour", 1489 | "scope": [ 1490 | "entity.other.attribute-name.pseudo-element", 1491 | "entity.other.attribute-name.pseudo-class" 1492 | ], 1493 | "settings": { 1494 | "foreground": "#a80c13" 1495 | } 1496 | }, 1497 | { 1498 | "name": "Clojure globals", 1499 | "scope": [ 1500 | "entity.global.clojure" 1501 | ], 1502 | "settings": { 1503 | "foreground": "#a80c13" 1504 | } 1505 | }, 1506 | { 1507 | "name": "Clojure symbols", 1508 | "scope": [ 1509 | "meta.symbol.clojure" 1510 | ], 1511 | "settings": { 1512 | "foreground": "#a80c13" 1513 | } 1514 | }, 1515 | { 1516 | "name": "Clojure constants", 1517 | "scope": [ 1518 | "constant.keyword.clojure" 1519 | ], 1520 | "settings": { 1521 | "foreground": "#a80c13" 1522 | } 1523 | }, 1524 | { 1525 | "name": "CoffeeScript Function Argument", 1526 | "scope": [ 1527 | "meta.arguments.coffee", 1528 | "variable.parameter.function.coffee" 1529 | ], 1530 | "settings": { 1531 | "foreground": "#a80c13" 1532 | } 1533 | }, 1534 | { 1535 | "name": "Ini Default Text", 1536 | "scope": [ 1537 | "source.ini" 1538 | ], 1539 | "settings": { 1540 | "foreground": "#a80c13" 1541 | } 1542 | }, 1543 | { 1544 | "name": "Makefile prerequisities", 1545 | "scope": [ 1546 | "meta.scope.prerequisites.makefile" 1547 | ], 1548 | "settings": { 1549 | "foreground": "#a80c13" 1550 | } 1551 | }, 1552 | { 1553 | "name": "Makefile text colour", 1554 | "scope": [ 1555 | "source.makefile" 1556 | ], 1557 | "settings": { 1558 | "foreground": "#a80c13" 1559 | } 1560 | }, 1561 | { 1562 | "name": "Groovy import names", 1563 | "scope": [ 1564 | "storage.modifier.import.groovy" 1565 | ], 1566 | "settings": { 1567 | "foreground": "#a80c13" 1568 | } 1569 | }, 1570 | { 1571 | "name": "Groovy Methods", 1572 | "scope": [ 1573 | "meta.method.groovy" 1574 | ], 1575 | "settings": { 1576 | "foreground": "#a80c13" 1577 | } 1578 | }, 1579 | { 1580 | "name": "Groovy Variables", 1581 | "scope": [ 1582 | "meta.definition.variable.name.groovy" 1583 | ], 1584 | "settings": { 1585 | "foreground": "#a80c13" 1586 | } 1587 | }, 1588 | { 1589 | "name": "Groovy Inheritance", 1590 | "scope": [ 1591 | "meta.definition.class.inherited.classes.groovy" 1592 | ], 1593 | "settings": { 1594 | "foreground": "#a80c13" 1595 | } 1596 | }, 1597 | { 1598 | "name": "HLSL Semantic", 1599 | "scope": [ 1600 | "support.variable.semantic.hlsl" 1601 | ], 1602 | "settings": { 1603 | "foreground": "#a80c13" 1604 | } 1605 | }, 1606 | { 1607 | "name": "HLSL Types", 1608 | "scope": [ 1609 | "support.type.texture.hlsl", 1610 | "support.type.sampler.hlsl", 1611 | "support.type.object.hlsl", 1612 | "support.type.object.rw.hlsl", 1613 | "support.type.fx.hlsl", 1614 | "support.type.object.hlsl" 1615 | ], 1616 | "settings": { 1617 | "foreground": "#a80c13" 1618 | } 1619 | }, 1620 | { 1621 | "name": "SQL Variables", 1622 | "scope": [ 1623 | "text.variable", 1624 | "text.bracketed" 1625 | ], 1626 | "settings": { 1627 | "foreground": "#a80c13" 1628 | } 1629 | }, 1630 | { 1631 | "name": "types", 1632 | "scope": [ 1633 | "support.type.swift", 1634 | "support.type.vb.asp" 1635 | ], 1636 | "settings": { 1637 | "foreground": "#a80c13" 1638 | } 1639 | }, 1640 | { 1641 | "name": "heading 1, keyword", 1642 | "scope": [ 1643 | "entity.name.function.xi" 1644 | ], 1645 | "settings": { 1646 | "foreground": "#a80c13" 1647 | } 1648 | }, 1649 | { 1650 | "name": "heading 2, callable", 1651 | "scope": [ 1652 | "entity.name.class.xi" 1653 | ], 1654 | "settings": { 1655 | "foreground": "#a80c13" 1656 | } 1657 | }, 1658 | { 1659 | "name": "heading 3, property", 1660 | "scope": [ 1661 | "constant.character.character-class.regexp.xi" 1662 | ], 1663 | "settings": { 1664 | "foreground": "#a80c13" 1665 | } 1666 | }, 1667 | { 1668 | "name": "heading 4, type, class, interface", 1669 | "scope": [ 1670 | "constant.regexp.xi" 1671 | ], 1672 | "settings": { 1673 | "foreground": "#a80c13" 1674 | } 1675 | }, 1676 | { 1677 | "name": "heading 5, enums, preprocessor, constant, decorator", 1678 | "scope": [ 1679 | "keyword.control.xi" 1680 | ], 1681 | "settings": { 1682 | "foreground": "#a80c13" 1683 | } 1684 | }, 1685 | { 1686 | "name": "heading 6, number", 1687 | "scope": [ 1688 | "invalid.xi" 1689 | ], 1690 | "settings": { 1691 | "foreground": "#a80c13" 1692 | } 1693 | }, 1694 | { 1695 | "name": "string", 1696 | "scope": [ 1697 | "beginning.punctuation.definition.quote.markdown.xi" 1698 | ], 1699 | "settings": { 1700 | "foreground": "#a80c13" 1701 | } 1702 | }, 1703 | { 1704 | "name": "comments", 1705 | "scope": [ 1706 | "beginning.punctuation.definition.list.markdown.xi" 1707 | ], 1708 | "settings": { 1709 | "foreground": "#a80c13" 1710 | } 1711 | }, 1712 | { 1713 | "name": "link", 1714 | "scope": [ 1715 | "constant.character.xi" 1716 | ], 1717 | "settings": { 1718 | "foreground": "#a80c13" 1719 | } 1720 | }, 1721 | { 1722 | "name": "accent", 1723 | "scope": [ 1724 | "accent.xi" 1725 | ], 1726 | "settings": { 1727 | "foreground": "#a80c13" 1728 | } 1729 | }, 1730 | { 1731 | "name": "wikiword", 1732 | "scope": [ 1733 | "wikiword.xi" 1734 | ], 1735 | "settings": { 1736 | "foreground": "#a80c13" 1737 | } 1738 | }, 1739 | { 1740 | "name": "language operators like '+', '-' etc", 1741 | "scope": [ 1742 | "constant.other.color.rgb-value.xi" 1743 | ], 1744 | "settings": { 1745 | "foreground": "#ffffff" 1746 | } 1747 | }, 1748 | { 1749 | "name": "elements to dim", 1750 | "scope": [ 1751 | "punctuation.definition.tag.xi" 1752 | ], 1753 | "settings": { 1754 | "foreground": "#a80c13" 1755 | } 1756 | }, 1757 | { 1758 | "name": "C++/C#", 1759 | "scope": [ 1760 | "entity.name.label.cs", 1761 | "entity.name.scope-resolution.function.call", 1762 | "entity.name.scope-resolution.function.definition" 1763 | ], 1764 | "settings": { 1765 | "foreground": "#a80c13" 1766 | } 1767 | }, 1768 | { 1769 | "name": "Markdown underscore-style headers", 1770 | "scope": [ 1771 | "entity.name.label.cs", 1772 | "markup.heading.setext.1.markdown", 1773 | "markup.heading.setext.2.markdown" 1774 | ], 1775 | "settings": { 1776 | "foreground": "#a80c13" 1777 | } 1778 | }, 1779 | { 1780 | "name": "meta.brace.square", 1781 | "scope": [ 1782 | " meta.brace.square" 1783 | ], 1784 | "settings": { 1785 | "foreground": "#a80c13" 1786 | } 1787 | }, 1788 | { 1789 | "name": "Comments", 1790 | "scope": "comment, punctuation.definition.comment", 1791 | "settings": { 1792 | "fontStyle": "italic", 1793 | "foreground": "#a80c13" 1794 | } 1795 | }, 1796 | { 1797 | "name": "[VSCODE-CUSTOM] Markdown Quote", 1798 | "scope": "markup.quote.markdown", 1799 | "settings": { 1800 | "foreground": "#a80c13" 1801 | } 1802 | }, 1803 | { 1804 | "name": "punctuation.definition.block.sequence.item.yaml", 1805 | "scope": "punctuation.definition.block.sequence.item.yaml", 1806 | "settings": { 1807 | "foreground": "#a80c13" 1808 | } 1809 | }, 1810 | { 1811 | "scope": [ 1812 | "constant.language.symbol.elixir" 1813 | ], 1814 | "settings": { 1815 | "foreground": "#a80c13" 1816 | } 1817 | }, 1818 | { 1819 | "name": "js/ts italic", 1820 | "scope": "entity.other.attribute-name.js,entity.other.attribute-name.ts,entity.other.attribute-name.jsx,entity.other.attribute-name.tsx,variable.parameter,variable.language.super", 1821 | "settings": { 1822 | "fontStyle": "italic" 1823 | } 1824 | }, 1825 | { 1826 | "name": "comment", 1827 | "scope": "comment.line.double-slash,comment.block.documentation", 1828 | "settings": { 1829 | "fontStyle": "italic" 1830 | } 1831 | }, 1832 | { 1833 | "name": "Python Keyword Control", 1834 | "scope": "keyword.control.import.python,keyword.control.flow.python", 1835 | "settings": { 1836 | "fontStyle": "italic" 1837 | } 1838 | }, 1839 | { 1840 | "name": "markup.italic.markdown", 1841 | "scope": "markup.italic.markdown", 1842 | "settings": { 1843 | "fontStyle": "italic" 1844 | } 1845 | } 1846 | ], 1847 | "colors": { 1848 | "foreground": "#ffffff", 1849 | "focusBorder": "#fbac14", 1850 | "selection.background": "#a80c132e", 1851 | "scrollbar.shadow": "#a80c13", 1852 | "activityBar.foreground": "#ffffff", 1853 | "activityBar.background": "#a80c13", 1854 | "activityBar.inactiveForeground": "#ffffff", 1855 | "activityBarBadge.foreground": "#a80c13", 1856 | "activityBarBadge.background": "#ffffff", 1857 | "activityBar.border": "#ffffff", 1858 | "activityBar.activeBackground": "#a80c13", 1859 | "sideBar.background": "#a80c13", 1860 | "sideBar.foreground": "#ffffff", 1861 | "sideBarSectionHeader.background": "#a80c13", 1862 | "sideBarSectionHeader.foreground": "#ffffff", 1863 | "sideBarSectionHeader.border": "#a80c13", 1864 | "sideBarTitle.foreground": "#ffffff", 1865 | "sideBar.border": "#a80c13", 1866 | "list.inactiveSelectionBackground": "#a80c13", 1867 | "list.inactiveSelectionForeground": "#a80c13", 1868 | "list.hoverBackground": "#ff000b", 1869 | "list.hoverForeground": "#ffffff", 1870 | "list.activeSelectionBackground": "#a80c13", 1871 | "list.activeSelectionForeground": "#ffffff", 1872 | "tree.indentGuidesStroke": "#a80c13", 1873 | "list.dropBackground": "#fbac14", 1874 | "list.highlightForeground": "#a80c13", 1875 | "list.focusBackground": "#ffffff", 1876 | "list.focusForeground": "#ffffff", 1877 | "listFilterWidget.background": "#fbac14", 1878 | "listFilterWidget.outline": "#d91922", 1879 | "listFilterWidget.noMatchesOutline": "#a80c13", 1880 | "statusBar.foreground": "#ffffff", 1881 | "statusBar.background": "#a80c13", 1882 | "statusBarItem.hoverBackground": "#d91922", 1883 | "statusBar.border": "#d91922", 1884 | "statusBar.debuggingBackground": "#a80c13", 1885 | "statusBar.debuggingForeground": "#ffffff", 1886 | "statusBar.debuggingBorder": "#ffffff", 1887 | "statusBar.noFolderBackground": "#d91922", 1888 | "statusBar.noFolderForeground": "#ffffff", 1889 | "statusBar.noFolderBorder": "#a80c13", 1890 | "statusBarItem.remoteBackground": "#d91922", 1891 | "statusBarItem.remoteForeground": "#ffffff", 1892 | "titleBar.activeBackground": "#a80c13", 1893 | "titleBar.activeForeground": "#ffffff", 1894 | "titleBar.inactiveBackground": "#ffffff", 1895 | "titleBar.inactiveForeground": "#d91922", 1896 | "titleBar.border": "#ffffff00", 1897 | "menubar.selectionForeground": "#d91922", 1898 | "menubar.selectionBackground": "#fbac14", 1899 | "menubar.selectionBorder": "#d91922", 1900 | "menu.foreground": "#a80c13", 1901 | "menu.background": "#ffffff", 1902 | "menu.selectionForeground": "#a80c13", 1903 | "menu.selectionBackground": "#fbac14", 1904 | "menu.selectionBorder": "#ffffff00", 1905 | "menu.separatorBackground": "#a80c13", 1906 | "menu.border": "#a80c13", 1907 | "button.background": "#a80c13", 1908 | "button.foreground": "#ffffff", 1909 | "button.hoverBackground": "#d91922", 1910 | "button.secondaryForeground": "#a80c13", 1911 | "button.secondaryBackground": "#fedd03", 1912 | "button.secondaryHoverBackground": "#fffffc", 1913 | "input.background": "#ffffff", 1914 | "input.border": "#d91922", 1915 | "input.foreground": "#a80c13", 1916 | "inputOption.activeBackground": "#d91922", 1917 | "inputOption.activeBorder": "#fedd03", 1918 | "inputOption.activeForeground": "#ffffff", 1919 | "input.placeholderForeground": "#a80c13", 1920 | "textLink.foreground": "#ffffff", 1921 | "editor.background": "#ffffff", 1922 | "editor.foreground": "#a80c13", 1923 | "editorLineNumber.foreground": "#a80c13", 1924 | "editorCursor.foreground": "#a80c13", 1925 | "editorCursor.background": "#ffffff", 1926 | "editor.selectionBackground": "#fbac1450", 1927 | "editor.inactiveSelectionBackground": "#e5ebf1", 1928 | "editorWhitespace.foreground": "#33333333", 1929 | "editor.selectionHighlightBackground": "#add6ff80", 1930 | "editor.selectionHighlightBorder": "#495F77", 1931 | "editor.findMatchBackground": "#a8ac94", 1932 | "editor.findMatchBorder": "#979b83", 1933 | "editor.findMatchHighlightBackground": "#ea5c0055", 1934 | "editor.findMatchHighlightBorder": "#ffffff00", 1935 | "editor.findRangeHighlightBackground": "#b4b4b44d", 1936 | "editor.findRangeHighlightBorder": "#ffffff00", 1937 | "editor.rangeHighlightBackground": "#fdff0033", 1938 | "editor.rangeHighlightBorder": "#ffffff00", 1939 | "editor.hoverHighlightBackground": "#add6ff26", 1940 | "editor.wordHighlightStrongBackground": "#0e639c40", 1941 | "editor.wordHighlightBackground": "#57575740", 1942 | "editor.lineHighlightBackground": "#ffffff0A", 1943 | "editor.lineHighlightBorder": "#eeeeee", 1944 | "editorLineNumber.activeForeground": "#d91922", 1945 | "editorLink.activeForeground": "#a80c13", 1946 | "editorIndentGuide.background": "#d3d3d3", 1947 | "editorIndentGuide.activeBackground": "#939393", 1948 | "editorRuler.foreground": "#d3d3d3", 1949 | "editorBracketMatch.background": "#0064001a", 1950 | "editorBracketMatch.border": "#b9b9b9", 1951 | "editor.foldBackground": "#add6ff4d", 1952 | "editorOverviewRuler.background": "#25252500", 1953 | "editorOverviewRuler.border": "#7f7f7f4d", 1954 | "editorError.foreground": "#e51400", 1955 | "editorError.background": "#B73A3400", 1956 | "editorError.border": "#ffffff00", 1957 | "editorWarning.foreground": "#e9a700", 1958 | "editorWarning.background": "#A9904000", 1959 | "editorWarning.border": "#ffffff00", 1960 | "editorInfo.foreground": "#75beff", 1961 | "editorInfo.background": "#4490BF00", 1962 | "editorInfo.border": "#4490BF00", 1963 | "editorGutter.background": "#ffffff", 1964 | "editorGutter.modifiedBackground": "#66afe0", 1965 | "editorGutter.addedBackground": "#81b88b", 1966 | "editorGutter.deletedBackground": "#ca4b51", 1967 | "editorGutter.foldingControlForeground": "#424242", 1968 | "editorCodeLens.foreground": "#999999", 1969 | "editorGroup.border": "#e7e7e7", 1970 | "diffEditor.insertedTextBackground": "#9bb95533", 1971 | "diffEditor.removedTextBackground": "#ff000033", 1972 | "diffEditor.border": "#d7d7d7", 1973 | "panel.background": "#d91922", 1974 | "panel.border": "#fbac14", 1975 | "panelTitle.activeBorder": "#ffffff", 1976 | "panelTitle.activeForeground": "#ffffff", 1977 | "panelTitle.inactiveForeground": "#ffffffbf", 1978 | "badge.background": "#fedd03", 1979 | "badge.foreground": "#a80c13", 1980 | "terminal.foreground": "#ffffff", 1981 | "terminal.selectionBackground": "#fbac1460", 1982 | "terminalCursor.background": "#fbac14", 1983 | "terminalCursor.foreground": "#ffffff", 1984 | "terminal.border": "#fbac14", 1985 | "terminal.ansiBlack": "#000000", 1986 | "terminal.ansiBlue": "#ffffff", 1987 | "terminal.ansiBrightBlack": "#000000", 1988 | "terminal.ansiBrightBlue": "#ffffff", 1989 | "terminal.ansiBrightCyan": "#ffffff", 1990 | "terminal.ansiBrightGreen": "#00ff00", 1991 | "terminal.ansiBrightMagenta": "#ffffff", 1992 | "terminal.ansiBrightRed": "#fbac14", 1993 | "terminal.ansiBrightWhite": "#ffffff", 1994 | "terminal.ansiBrightYellow": "#fedd03", 1995 | "terminal.ansiCyan": "#ffffff", 1996 | "terminal.ansiGreen": "#00ff00", 1997 | "terminal.ansiMagenta": "#ffffff", 1998 | "terminal.ansiRed": "#fbac14", 1999 | "terminal.ansiWhite": "#ffffff", 2000 | "terminal.ansiYellow": "#fedd03", 2001 | "breadcrumb.background": "#ffffff", 2002 | "breadcrumb.foreground": "#d91922", 2003 | "breadcrumb.focusForeground": "#d91922", 2004 | "editorGroupHeader.border": "#ffffff00", 2005 | "editorGroupHeader.tabsBackground": "#d91922", 2006 | "editorGroupHeader.tabsBorder": "#d91922", 2007 | "tab.activeForeground": "#d91922", 2008 | "tab.border": "#ffffff", 2009 | "tab.activeBackground": "#ffffff", 2010 | "tab.activeBorder": "#d91922", 2011 | "tab.activeBorderTop": "#ffffff00", 2012 | "tab.inactiveBackground": "#ececec", 2013 | "tab.inactiveForeground": "#a80c13", 2014 | "tab.hoverBackground": "#ffffff", 2015 | "scrollbarSlider.background": "#d91922", 2016 | "scrollbarSlider.hoverBackground": "#a80c13", 2017 | "scrollbarSlider.activeBackground": "#a80c13", 2018 | "progressBar.background": "#d91922", 2019 | "widget.shadow": "#d91922", 2020 | "editorWidget.foreground": "#ffffff", 2021 | "editorWidget.background": "#a80c13", 2022 | "editorWidget.resizeBorder": "#d91922", 2023 | "pickerGroup.border": "#cccedb", 2024 | "pickerGroup.foreground": "#fedd03", 2025 | "debugToolBar.background": "#ffffff", 2026 | "debugToolBar.border": "#d91922", 2027 | "notifications.foreground": "#616161", 2028 | "notifications.background": "#f3f3f3", 2029 | "notificationToast.border": "#d5d5d5", 2030 | "notificationsErrorIcon.foreground": "#e51400", 2031 | "notificationsWarningIcon.foreground": "#e9a700", 2032 | "notificationsInfoIcon.foreground": "#d91922", 2033 | "notificationCenter.border": "#fbac14", 2034 | "notificationCenterHeader.foreground": "#000000", 2035 | "notificationCenterHeader.background": "#fbac14", 2036 | "notifications.border": "#fbac14", 2037 | "gitDecoration.addedResourceForeground": "#ffffff", 2038 | "gitDecoration.conflictingResourceForeground": "#ffffff", 2039 | "gitDecoration.deletedResourceForeground": "#ffffff", 2040 | "gitDecoration.ignoredResourceForeground": "#ffffff", 2041 | "gitDecoration.modifiedResourceForeground": "#ffffff", 2042 | "gitDecoration.stageDeletedResourceForeground": "#ffffff", 2043 | "gitDecoration.stageModifiedResourceForeground": "#ffffff", 2044 | "gitDecoration.submoduleResourceForeground": "#ffffff", 2045 | "gitDecoration.untrackedResourceForeground": "#ffffff", 2046 | "editorMarkerNavigation.background": "#ffffff", 2047 | "editorMarkerNavigationError.background": "#e51400", 2048 | "editorMarkerNavigationWarning.background": "#e9a700", 2049 | "editorMarkerNavigationInfo.background": "#75beff", 2050 | "merge.currentHeaderBackground": "#A4E3D6", 2051 | "merge.currentContentBackground": "#DBF4EF", 2052 | "merge.incomingHeaderBackground": "#A6CFFF", 2053 | "merge.incomingContentBackground": "#DBECFF", 2054 | "merge.commonHeaderBackground": "#BFBFBF", 2055 | "merge.commonContentBackground": "#E5E5E5", 2056 | "editorSuggestWidget.background": "#f3f3f3", 2057 | "editorSuggestWidget.border": "#c8c8c8", 2058 | "editorSuggestWidget.foreground": "#000000", 2059 | "editorSuggestWidget.highlightForeground": "#0066bf", 2060 | "editorSuggestWidget.selectedBackground": "#d6ebff", 2061 | "editorHoverWidget.foreground": "#616161", 2062 | "editorHoverWidget.background": "#f3f3f3", 2063 | "editorHoverWidget.border": "#c8c8c8", 2064 | "peekView.border": "#007acc", 2065 | "peekViewEditor.background": "#f2f8fc", 2066 | "peekViewEditorGutter.background": "#f2f8fc", 2067 | "peekViewEditor.matchHighlightBackground": "#f5d802de", 2068 | "peekViewEditor.matchHighlightBorder": "#dbc417", 2069 | "peekViewResult.background": "#f3f3f3", 2070 | "peekViewResult.fileForeground": "#1e1e1e", 2071 | "peekViewResult.lineForeground": "#646465", 2072 | "peekViewResult.matchHighlightBackground": "#ea5c004d", 2073 | "peekViewResult.selectionBackground": "#3399ff33", 2074 | "peekViewResult.selectionForeground": "#6c6c6c", 2075 | "peekViewTitle.background": "#ffffff", 2076 | "peekViewTitleDescription.foreground": "#616161e6", 2077 | "peekViewTitleLabel.foreground": "#333333", 2078 | "icon.foreground": "#ffffff", 2079 | "checkbox.background": "#ffffff", 2080 | "checkbox.foreground": "#a80c13", 2081 | "checkbox.border": "#d91922", 2082 | "dropdown.background": "#ffffff", 2083 | "dropdown.foreground": "#a80c13", 2084 | "dropdown.border": "#d91922", 2085 | "minimapGutter.addedBackground": "#81b88b", 2086 | "minimapGutter.modifiedBackground": "#66afe0", 2087 | "minimapGutter.deletedBackground": "#ca4b51", 2088 | "minimap.findMatchHighlight": "#a8ac94", 2089 | "minimap.selectionHighlight": "#fbac1450", 2090 | "minimap.errorHighlight": "#e51400", 2091 | "minimap.warningHighlight": "#e9a700", 2092 | "minimap.background": "#ffffff", 2093 | "sideBar.dropBackground": "#fbac14", 2094 | "editorGroup.emptyBackground": "#ffffff", 2095 | "panelSection.border": "#fbac14", 2096 | "statusBarItem.activeBackground": "#FFFFFF25", 2097 | "settings.headerForeground": "#ffffff", 2098 | "settings.focusedRowBackground": "#ffffff07", 2099 | "walkThrough.embeddedEditorBackground": "#00000050", 2100 | "breadcrumb.activeSelectionForeground": "#d91922", 2101 | "editorGutter.commentRangeForeground": "#424242", 2102 | "debugExceptionWidget.background": "#ffffff", 2103 | "debugExceptionWidget.border": "#d91922", 2104 | "welcomePage.progress.foreground": "#fbac14", 2105 | "welcomePage.tileBackground": "#d91922", 2106 | "welcomePage.tileBorder": "#d91922", 2107 | } 2108 | } --------------------------------------------------------------------------------