Last active
          November 20, 2023 15:04 
        
      - 
      
- 
        Save nicolas-oliveira/6a3852adaf43c37059a855158ffae3c8 to your computer and use it in GitHub Desktop. 
    My vscode settings
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "window.zoomLevel": -0.9, | |
| "workbench.colorTheme": "Monokai", | |
| "editor.fontSize": 16, | |
| "editor.rulers": [80,120], | |
| "editor.fontFamily": "'SF Mono'", | |
| "terminal.integrated.fontFamily": "'Hack'", | |
| "editor.tabSize": 2, | |
| "workbench.sideBar.location": "right", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "editor.codeLens": false, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true | |
| }, | |
| "javascript.validate.enable": false, | |
| "files.exclude": { | |
| "**/.git": true, | |
| "**/.svn": true, | |
| "**/.hg": true, | |
| "**/CVS": true, | |
| "**/.DS_Store": true, | |
| "node_modules": true, | |
| ".vscode": true | |
| }, | |
| "emmet.syntaxProfiles": { | |
| "javascript": "jsx", | |
| }, | |
| "emmet.includeLanguages": { | |
| "javascript": "javascriptreact", | |
| }, | |
| "javascript.suggest.autoImports": true, | |
| "typescript.suggest.autoImports": true, | |
| "markdown.preview.fontSize": 15, | |
| "markdown.preview.fontFamily": "Helvetica", | |
| "git.path": null, | |
| "git.autofetch": false, | |
| "material-icon-theme.folders.color": "#42a5f5", | |
| "explorer.confirmDragAndDrop": false, | |
| "liveServer.settings.donotShowInfoMsg": true, | |
| "liveServer.settings.donotVerifyTags": true, | |
| "editor.renameOnType": true, | |
| "zenMode.hideActivityBar": false, | |
| "explorer.confirmDelete": false, | |
| "explorer.compactFolders": false, | |
| "editor.detectIndentation": false, | |
| "files.associations": { | |
| "*.js": "javascriptreact", | |
| "*.ts": "javascriptreact", | |
| "*.tsx": "javascriptreact", | |
| }, | |
| "material-icon-theme.folders.associations": { | |
| "migrations": "tools", | |
| "schemas": "class", | |
| "http": "container", | |
| }, | |
| "runOnSave.commands": [ | |
| // Predefined variables | |
| // The following predefined variables are supported: | |
| // | |
| // ${workspaceFolder} - the path of the folder opened in VS Code | |
| // ${workspaceFolderBasename} - the name of the folder opened in VS Code without any slashes (/) | |
| // ${file} - the current opened file | |
| // ${relativeFile} - the current opened file relative to workspaceFolder | |
| // ${relativeFileDirname} - the current opened file's dirname relative to workspaceFolder | |
| // ${fileBasename} - the current opened file's basename | |
| // ${fileBasenameNoExtension} - the current opened file's basename with no file extension | |
| // ${fileDirname} - the current opened file's dirname | |
| // ${fileExtname} - the current opened file's extension | |
| // ${cwd} - the task runner's current working directory on startup | |
| // ${lineNumber} - the current selected line number in the active file | |
| // ${selectedText} - the current selected text in the active file | |
| // ${execPath} - the path to the running VS Code executable | |
| // ${defaultBuildTask} - the name of the default build task | |
| // { | |
| // "match": "\\.js$", | |
| // "runIn": "terminal", | |
| // "command": "clear && node ${fileBasename}" | |
| // }, | |
| { | |
| "match": "\\.cpp$", | |
| "runIn": "terminal", | |
| "command": "clear && g++ -g -o file.o ${file} && ./file.o && rm ./file.o" | |
| }, | |
| { | |
| "match": "\\.c$", | |
| "runIn": "terminal", | |
| "command": "clear && gcc -lm -g -o file.o ${fileBasename} && ./file.o && rm ./file.o" | |
| }, | |
| // Para arquivos únicos | |
| // { | |
| // "match": "\\.cs$", | |
| // "runIn": "terminal", | |
| // "command": "clear && mcs -o out.exe ${fileBasename} && clear && mono out.exe && rm out.exe" | |
| // }, | |
| // Para packages in C# | |
| { | |
| "match": "\\.cs$", | |
| "runIn": "terminal", | |
| "command": "clear && mcs -out:out.exe *.cs && clear && mono out.exe && rm out.exe" | |
| }, | |
| { | |
| // Para funcionar deve-se colocar o mesmo nome para a pasta do programa e para a classe principal Main e o package | |
| // Abra o vscode no diretório acima da pasta do programa, e execute pelo terminal dentro da pasta do programa | |
| // / -> Abra o vscode aqui | |
| // └── Projeto -> Coloque o terminal integrado aqui e execute o comando | |
| // ├── Projeto.java | |
| // └── File1.java | |
| "match": "\\.java$", | |
| "runIn": "terminal", | |
| "command": "clear && javac *.java && clear && java -classpath ${workspaceFolder} ${fileBasenameNoExtension}.${fileBasenameNoExtension} && rm *.class" | |
| } | |
| ], | |
| "peacock.favoriteColors": [ | |
| { | |
| "name": "RocketSeat Purple", | |
| "value": "#6842C2" | |
| }, | |
| { | |
| "name": "Angular Red", | |
| "value": "#b52e31" | |
| }, | |
| { | |
| "name": "Auth0 Orange", | |
| "value": "#eb5424" | |
| }, | |
| { | |
| "name": "Azure Blue", | |
| "value": "#007fff" | |
| }, | |
| { | |
| "name": "C# Purple", | |
| "value": "#68217A" | |
| }, | |
| { | |
| "name": "Gatsby Purple", | |
| "value": "#639" | |
| }, | |
| { | |
| "name": "Go Cyan", | |
| "value": "#5dc9e2" | |
| }, | |
| { | |
| "name": "Java Blue-Gray", | |
| "value": "#557c9b" | |
| }, | |
| { | |
| "name": "JavaScript Yellow", | |
| "value": "#f9e64f" | |
| }, | |
| { | |
| "name": "Mandalorian Blue", | |
| "value": "#1857a4" | |
| }, | |
| { | |
| "name": "Node Green", | |
| "value": "#215732" | |
| }, | |
| { | |
| "name": "React Blue", | |
| "value": "#00b3e6" | |
| }, | |
| { | |
| "name": "Something Different", | |
| "value": "#832561" | |
| }, | |
| { | |
| "name": "Vue Green", | |
| "value": "#42b883" | |
| } | |
| ], | |
| "editor.tokenColorCustomizations": { | |
| "textMateRules": [ | |
| { | |
| "scope": [ | |
| "comment", | |
| "comment keyword", | |
| "comment markup.underline.link", | |
| "comment string", | |
| "comment punctuation.definition", | |
| "comment punctuation", | |
| "comment text" | |
| ], | |
| "settings": { | |
| "foreground": "#727072", | |
| "fontStyle": "italic" | |
| } | |
| }, | |
| { | |
| "scope": "comment storage.type", | |
| "settings": { | |
| "foreground": "#727072" | |
| } | |
| }, | |
| { | |
| "scope": "comment entity.name.type", | |
| "settings": { | |
| "foreground": "#C1C0C0" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "comment variable", | |
| "comment variable.other" | |
| ], | |
| "settings": { | |
| "foreground": "#C1C0C0" | |
| } | |
| }, | |
| { | |
| "scope": "comment keyword.codetag.notation", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "comment.git-status.header.remote", | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": "comment.git-status.header.local", | |
| "settings": { | |
| "foreground": "#78DCE8" | |
| } | |
| }, | |
| { | |
| "scope": "comment.other.git-status.head", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": "constant", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "constant.other", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": "constant.other.php", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "constant.other.property", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "constant.other.citation.latex", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "constant.other.color", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "constant.other.character-class.escape", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "constant.other.key", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "constant.other.symbol", | |
| "settings": { | |
| "foreground": "#FC9867" | |
| } | |
| }, | |
| { | |
| "scope": "constant.other.elm", | |
| "settings": { | |
| "foreground": "#78DCE8" | |
| } | |
| }, | |
| { | |
| "scope": "constant.numeric", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "constant.language", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "constant.character.escape", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "constant.numeric.line-number.find-in-files", | |
| "settings": { | |
| "foreground": "#5B595C" | |
| } | |
| }, | |
| { | |
| "scope": "string.quoted.double.json.comments", | |
| "settings": { | |
| "foreground": "#FFD866" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name.section", | |
| "settings": { | |
| "foreground": "#FFD866" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "entity.name.function", | |
| "entity.name.function.templated" | |
| ], | |
| "settings": { | |
| "foreground": "#A9DC76" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name.function.member.static", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "entity.name.type.class.templated", | |
| "entity.name.type.class.generic", | |
| "entity.name.type.namespace" | |
| ], | |
| "settings": { | |
| "foreground": "#78DCE8" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name.label", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name.function.preprocessor", | |
| "settings": { | |
| "foreground": "#78DCE8" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name", | |
| "settings": { | |
| "foreground": "#A9DC76" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name.class", | |
| "settings": { | |
| "foreground": "#78DCE8" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name.constant", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name.namespace", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": "entity.other.inherited-class", | |
| "settings": { | |
| "foreground": "#78DCE8", | |
| "fontStyle": "italic" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name.function", | |
| "settings": { | |
| "foreground": "#A9DC76" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "entity.name.tag", | |
| "entity.name.tag.js.jsx support.class.component.js.jsx", | |
| "entity.name.tag support.class.component", | |
| "source.vue support.class.component" | |
| ], | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name.function.operator", | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "entity.name.type", | |
| "entity.name.type.class.reference", | |
| "entity.name.type.class.value" | |
| ], | |
| "settings": { | |
| "foreground": "#78DCE8" | |
| } | |
| }, | |
| { | |
| "scope": "entity.other.attribute-name", | |
| "settings": { | |
| "foreground": "#78DCE8", | |
| "fontStyle": "italic" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "entity.other.attribute-name.class.css", | |
| "entity.other.attribute-name.parent-selector-suffix.css", | |
| "entity.other.attribute-name.parent-selector-suffix.css punctuation.definition.entity.css", | |
| "entity.other.attribute-name.css", | |
| "entity.other.animation-name.css" | |
| ], | |
| "settings": { | |
| "foreground": "#A9DC76" | |
| } | |
| }, | |
| { | |
| "scope": "entity.other.attribute-name.id.css", | |
| "settings": { | |
| "foreground": "#FC9867" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "entity.other.attribute-name.pseudo-class.css", | |
| "entity.other.pseudo-class.css", | |
| "entity.other.pseudo-element.css" | |
| ], | |
| "settings": { | |
| "foreground": "#78DCE8", | |
| "fontStyle": "italic" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "entity.name.function", | |
| "support.function" | |
| ], | |
| "settings": { | |
| "foreground": "#A9DC76" | |
| } | |
| }, | |
| { | |
| "scope": "entity.other.git-status.hex", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "entity.other.jinja2.delimiter", | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name.operator.custom-literal", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name.operator.custom-literal.string", | |
| "settings": { | |
| "foreground": "#FFD866" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name.operator.custom-literal.number", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name.type.rust", | |
| "settings": { | |
| "foreground": "#78DCE8" | |
| } | |
| }, | |
| { | |
| "scope": "entity.name.lifetime.rust", | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": "invalid", | |
| "settings": { | |
| "fontStyle": "italic" | |
| } | |
| }, | |
| { | |
| "scope": "keyword", | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": "keyword.control", | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": "keyword.control.directive", | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "keyword.operator", | |
| "keyword.operator.member", | |
| "keyword.operator.new" | |
| ], | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": "keyword.other.substitution", | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "keyword.other.template.begin", | |
| "keyword.other.template.end" | |
| ], | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "keyword.operator.heading.restructuredtext", | |
| "keyword.operator.table.row.restructuredtext keyword.operator.table.data.restructuredtext" | |
| ], | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": "keyword.other.parenthesis.elm", | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "keyword.other.fn.rust", | |
| "keyword.other.rust", | |
| "keyword.other.unsafe.rust", | |
| "keyword.other.where.rust" | |
| ], | |
| "settings": { | |
| "foreground": "#78DCE8" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "keyword.control.rust", | |
| "keyword.operator.misc.rust" | |
| ], | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": "markup.italic", | |
| "settings": { | |
| "fontStyle": "italic" | |
| } | |
| }, | |
| { | |
| "scope": "markup.bold", | |
| "settings": { | |
| "fontStyle": "bold" | |
| } | |
| }, | |
| { | |
| "scope": "markup.heading", | |
| "settings": { | |
| "foreground": "#FFD866" | |
| } | |
| }, | |
| { | |
| "scope": "markup.raw", | |
| "settings": { | |
| "foreground": "#FC9867" | |
| } | |
| }, | |
| { | |
| "scope": "markup.underline", | |
| "settings": { | |
| "fontStyle": "underline" | |
| } | |
| }, | |
| { | |
| "scope": "markup.underline.link", | |
| "settings": { | |
| "foreground": "#A9DC76" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "markup.inserted", | |
| "markup.inserted punctuation.definition.inserted" | |
| ], | |
| "settings": { | |
| "foreground": "#A9DC76" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "markup.deleted", | |
| "markup.deleted punctuation.definition.deleted" | |
| ], | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "markup.changed", | |
| "markup.changed punctuation.definition.changed" | |
| ], | |
| "settings": { | |
| "foreground": "#FFD866" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "markup.ignored", | |
| "markup.ignored punctuation.definition.ignored" | |
| ], | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": "markup.untracked", | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": "markup.quote", | |
| "settings": { | |
| "fontStyle": "italic" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "meta.brace.round", | |
| "meta.brace.square", | |
| "meta.brace.curly", | |
| "meta.delimiter.comma.js", | |
| "meta.function-call.without-arguments.js", | |
| "meta.function-call.method.without-arguments.js" | |
| ], | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "meta.function-call.generic.python", | |
| "support.function.builtin.python" | |
| ], | |
| "settings": { | |
| "foreground": "#A9DC76" | |
| } | |
| }, | |
| { | |
| "scope": "meta.function-call.python meta.function-call.arguments.python", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": "meta.instance.constructor", | |
| "settings": { | |
| "foreground": "#A9DC76" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "meta.attribute-with-value.class string", | |
| "meta.attribute.class.html string" | |
| ], | |
| "settings": { | |
| "foreground": "#A9DC76" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "meta.attribute-with-value.id string", | |
| "meta.attribute.id.html string" | |
| ], | |
| "settings": { | |
| "foreground": "#FC9867" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "source.json meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary", | |
| "source.json meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string", | |
| "source.json meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary string" | |
| ], | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "source.json meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string", | |
| "source.json meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value meta.structure.dictionary meta.structure.dictionary.value string" | |
| ], | |
| "settings": { | |
| "foreground": "#FFD866" | |
| } | |
| }, | |
| { | |
| "scope": "meta.object.member", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": "meta.property-list.css variable.other", | |
| "settings": { | |
| "foreground": "#FC9867" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "entity.name.constant.preprocessor", | |
| "meta.preprocessor" | |
| ], | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "meta.diff.git-diff.header", | |
| "settings": { | |
| "foreground": "#FFD866" | |
| } | |
| }, | |
| { | |
| "scope": "meta.type_params.rust", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "meta.attribute.rust", | |
| "meta.annotation.rust", | |
| "variable.language.rust", | |
| "variable.annotation.rust", | |
| "meta.annotation.rust string", | |
| "meta.annotation.rust keyword", | |
| "meta.annotation.rust keyword.operator", | |
| "meta.attribute.rust string" | |
| ], | |
| "settings": { | |
| "foreground": "#C1C0C0" | |
| } | |
| }, | |
| { | |
| "scope": "punctuation", | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "punctuation.definition.tag", | |
| "punctuation.definition.tag source", | |
| "punctuation.definition.group.begin.ruby", | |
| "punctuation.definition.group.end.ruby", | |
| "punctuation.definition.group.begin.css", | |
| "punctuation.definition.group.end.css", | |
| "punctuation.definition.string.end.html source.css" | |
| ], | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": "punctuation.definition.group", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": "punctuation.definition.comment", | |
| "settings": { | |
| "foreground": "#727072" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "punctuation.definition.variable", | |
| "punctuation.definition.keyword.scss", | |
| "punctuation.definition.entity.css" | |
| ], | |
| "settings": { | |
| "foreground": "#C1C0C0" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "punctuation.section.embedded", | |
| "punctuation.section.embedded entity.name.tag", | |
| "punctuation.section.embedded constant.other", | |
| "punctuation.section.embedded source", | |
| "punctuation.section.embedded.begin" | |
| ], | |
| "settings": { | |
| "foreground": "#FC9867" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "punctuation.template-string.element.begin", | |
| "punctuation.template-string.element.end", | |
| "punctuation.definition.string.template.begin", | |
| "punctuation.definition.string.template.end", | |
| "string.quoted.template punctuation.definition.string.begin", | |
| "string.quoted.template punctuation.definition.string.end", | |
| "punctuation.definition.template-expression.begin", | |
| "punctuation.definition.template-expression.end" | |
| ], | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "meta.paragraph.markdown meta.dummy.line-break", | |
| "meta.paragraph.markdown meta.hard-line-break.markdown" | |
| ], | |
| "settings": { | |
| } | |
| }, | |
| { | |
| "scope": "region.redish", | |
| "settings": { | |
| "foreground": "#FF6188", | |
| } | |
| }, | |
| { | |
| "scope": "region.orangish", | |
| "settings": { | |
| "foreground": "#FC9867", | |
| } | |
| }, | |
| { | |
| "scope": "region.yellowish", | |
| "settings": { | |
| "foreground": "#FFD866", | |
| } | |
| }, | |
| { | |
| "scope": "region.greenish", | |
| "settings": { | |
| "foreground": "#A9DC76", | |
| } | |
| }, | |
| { | |
| "scope": "region.bluish", | |
| "settings": { | |
| "foreground": "#78DCE8", | |
| } | |
| }, | |
| { | |
| "scope": "region.purplish", | |
| "settings": { | |
| "foreground": "#AB9DF2", | |
| } | |
| }, | |
| { | |
| "scope": "region.pinkish", | |
| "settings": { | |
| "foreground": "#FF6188", | |
| } | |
| }, | |
| { | |
| "scope": "region.whitish", | |
| "settings": { | |
| "foreground": "#FFFFFF" | |
| } | |
| }, | |
| { | |
| "scope": "source", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "source.scss", | |
| "source.sass" | |
| ], | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "source.sass variable.other", | |
| "source.sass variable.sass", | |
| "source.scss variable.other", | |
| "source.scss variable.scss", | |
| "source.scss variable.sass", | |
| "source.css variable.other", | |
| "source.css variable.scss", | |
| "source.less variable.other", | |
| "source.less variable.other.less", | |
| "source.less variable.declaration.less" | |
| ], | |
| "settings": { | |
| "foreground": "#FC9867", | |
| "fontStyle": "italic" | |
| } | |
| }, | |
| { | |
| "scope": "source.git-show.commit.sha", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "source.git-show.author", | |
| "source.git-show.date", | |
| "source.git-diff.command", | |
| "source.git-diff.command meta.diff.git-diff.header.from-file", | |
| "source.git-diff.command meta.diff.git-diff.header.to-file" | |
| ], | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "source.git-show meta.diff.git-diff.header.extended.index.from-sha", | |
| "source.git-show meta.diff.git-diff.header.extended.index.to-sha" | |
| ], | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "source.git-show meta.diff.range.unified", | |
| "settings": { | |
| "foreground": "#FC9867" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "source.git-show meta.diff.header.from-file", | |
| "source.git-show meta.diff.header.to-file" | |
| ], | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": "storage", | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": "storage.type", | |
| "settings": { | |
| "foreground": "#78DCE8", | |
| "fontStyle": "italic" | |
| } | |
| }, | |
| { | |
| "scope": "storage.type.extends", | |
| "settings": { | |
| "foreground": "#FF6188", | |
| "fontStyle": "" | |
| } | |
| }, | |
| { | |
| "scope": "storage.type.function.arrow", | |
| "settings": { | |
| "foreground": "#FF6188", | |
| "fontStyle": "" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "storage.modifier", | |
| "storage.type.modifier" | |
| ], | |
| "settings": { | |
| "foreground": "#FF6188", | |
| "fontStyle": "italic" | |
| } | |
| }, | |
| { | |
| "scope": "storage.class.restructuredtext.ref", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "storage.modifier.visibility.rust", | |
| "storage.modifier.lifetime.rust" | |
| ], | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "storage.modifier.const.rust", | |
| "storage.modifier.dyn.rust", | |
| "storage.modifier.mut.rust", | |
| "storage.modifier.static.rust", | |
| "storage.type.rust", | |
| "storage.type.core.rust", | |
| "storage.class.std.rust" | |
| ], | |
| "settings": { | |
| "foreground": "#78DCE8" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "storage.type.rust", | |
| "storage.modifier.const.rust", | |
| "storage.modifier.dyn.rust", | |
| "storage.modifier.mut.rust", | |
| "storage.modifier.static.rust", | |
| "keyword.other.rust", | |
| "keyword.other.where.rust" | |
| ], | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": "string", | |
| "settings": { | |
| "foreground": "#FFD866" | |
| } | |
| }, | |
| { | |
| "scope": "string.unquoted.label", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": "string source", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "string source punctuation.section.embedded", | |
| "string punctuation.definition.string source" | |
| ], | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "string.other.link.title", | |
| "string.other.link.description" | |
| ], | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": "string.other.link.description.title", | |
| "settings": { | |
| "foreground": "#78DCE8" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "string.regexp punctuation.definition.string.begin", | |
| "string.regexp punctuation.definition.string.end" | |
| ], | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "string.other.ref", | |
| "string.other.restructuredtext.ref" | |
| ], | |
| "settings": { | |
| "foreground": "#A9DC76" | |
| } | |
| }, | |
| { | |
| "scope": "string.other.git-status.help.key", | |
| "settings": { | |
| "foreground": "#C1C0C0" | |
| } | |
| }, | |
| { | |
| "scope": "string.other.git-status.remote", | |
| "settings": { | |
| "foreground": "#FF6188" | |
| } | |
| }, | |
| { | |
| "scope": "support.constant", | |
| "settings": { | |
| "foreground": "#78DCE8" | |
| } | |
| }, | |
| { | |
| "scope": "support.constant.handlebars", | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": "support.type.vendor-prefix.css", | |
| "settings": { | |
| "foreground": "#C1C0C0" | |
| } | |
| }, | |
| { | |
| "scope": "support.function", | |
| "settings": { | |
| "foreground": "#A9DC76" | |
| } | |
| }, | |
| { | |
| "scope": "support.function.delimiter.elm", | |
| "settings": { | |
| "foreground": "#939293" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "support.type", | |
| "entity.name.type.object.console" | |
| ], | |
| "settings": { | |
| "foreground": "#78DCE8", | |
| "fontStyle": "italic" | |
| } | |
| }, | |
| { | |
| "scope": "support.variable", | |
| "settings": { | |
| "foreground": "#78DCE8" | |
| } | |
| }, | |
| { | |
| "scope": "support.type.property-name", | |
| "settings": { | |
| "foreground": "#FCFCFA", | |
| "fontStyle": "" | |
| } | |
| }, | |
| { | |
| "scope": "support.class", | |
| "settings": { | |
| "foreground": "#78DCE8" | |
| } | |
| }, | |
| { | |
| "scope": "support.constant.core.rust", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "text", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": "text.find-in-files", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "variable", | |
| "variable.other" | |
| ], | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "variable.parameter", | |
| "parameters variable.function" | |
| ], | |
| "settings": { | |
| "foreground": "#FC9867", | |
| "fontStyle": "italic" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "variable.language", | |
| "variable.parameter.function.language.special.self.python", | |
| "variable.parameter.function.language.special.cls.python" | |
| ], | |
| "settings": { | |
| "foreground": "#C1C0C0", | |
| "fontStyle": "italic" | |
| } | |
| }, | |
| { | |
| "scope": "variable.language.arguments", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "variable.other.class", | |
| "settings": { | |
| "foreground": "#78DCE8" | |
| } | |
| }, | |
| { | |
| "scope": "variable.other.constant", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "variable.other.readwrite", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": "variable.other.member", | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": "variable.other.enummember", | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "variable.other.property", | |
| "variable.other.property.static", | |
| "variable.other.event" | |
| ], | |
| "settings": { | |
| "foreground": "#FCFCFA" | |
| } | |
| }, | |
| { | |
| "scope": "variable.function", | |
| "settings": { | |
| "foreground": "#A9DC76" | |
| } | |
| }, | |
| { | |
| "scope": "variable.other.substitution", | |
| "settings": { | |
| "foreground": "#FC9867" | |
| } | |
| }, | |
| { | |
| "scope": [ | |
| "source.ruby variable.other.readwrite.instance.ruby", | |
| "source.ruby variable.other.readwrite.class.ruby" | |
| ], | |
| "settings": { | |
| "foreground": "#AB9DF2" | |
| } | |
| }, | |
| { | |
| "scope": "source.jinja2 variable.other.jinja2.block", | |
| "settings": { | |
| "foreground": "#A9DC76" | |
| } | |
| }, | |
| { | |
| "scope": "source.jinja2 variable.other.jinja2", | |
| "settings": { | |
| "foreground": "#FC9867" | |
| } | |
| }, | |
| { | |
| "scope": "token.info-token", | |
| "settings": { | |
| "foreground": "#6796E6" | |
| } | |
| }, | |
| { | |
| "scope": "token.warn-token", | |
| "settings": { | |
| "foreground": "#CD9731" | |
| } | |
| }, | |
| { | |
| "scope": "token.error-token", | |
| "settings": { | |
| "foreground": "#F44747" | |
| } | |
| }, | |
| { | |
| "scope": "token.debug-token", | |
| "settings": { | |
| "foreground": "#B267E6" | |
| } | |
| }, | |
| ] | |
| }, | |
| "workbench.colorCustomizations": { | |
| "activityBar.activeBackground": "#d04649", | |
| "activityBar.activeBorder": "#37cb34", | |
| "activityBar.background": "#d04649", | |
| "activityBar.border": "#131313", | |
| "activityBar.foreground": "#e7e7e7", | |
| "activityBar.inactiveForeground": "#e7e7e799", | |
| "activityBarBadge.background": "#37cb34", | |
| "activityBarBadge.foreground": "#15202b", | |
| "badge.background": "#f9e64f", | |
| "badge.foreground": "#131313", | |
| "breadcrumb.activeSelectionForeground": "#f7f1ff", | |
| "breadcrumb.focusForeground": "#bab6c0", | |
| "breadcrumb.foreground": "#8b888f", | |
| "button.background": "#363537", | |
| "button.foreground": "#8b888f", | |
| "button.hoverBackground": "#222222", | |
| "charts.blue": "#78dce8", | |
| "charts.foreground": "#fcfcfa", | |
| "charts.green": "#a9dc76", | |
| "charts.lines": "#727072", | |
| "charts.orange": "#fc9867", | |
| "charts.purple": "#ab9df2", | |
| "charts.red": "#ff6188", | |
| "charts.yellow": "#ffd866", | |
| "debugExceptionWidget.background": "#363537", | |
| "debugExceptionWidget.border": "#222222", | |
| "debugIcon.breakpointCurrentStackframeForeground": "#ffd866", | |
| "debugIcon.breakpointDisabledForeground": "#c1c0c0", | |
| "debugIcon.breakpointForeground": "#ff6188", | |
| "debugIcon.breakpointStackframeForeground": "#fcfcfa", | |
| "debugIcon.breakpointUnverifiedForeground": "#fc9867", | |
| "debugIcon.continueForeground": "#fcfcfa", | |
| "debugIcon.disconnectForeground": "#fcfcfa", | |
| "debugIcon.pauseForeground": "#fcfcfa", | |
| "debugIcon.restartForeground": "#a9dc76", | |
| "debugIcon.startForeground": "#a9dc76", | |
| "debugIcon.stepBackForeground": "#fcfcfa", | |
| "debugIcon.stepIntoForeground": "#fcfcfa", | |
| "debugIcon.stepOutForeground": "#fcfcfa", | |
| "debugIcon.stepOverForeground": "#fcfcfa", | |
| "debugIcon.stopForeground": "#ff6188", | |
| "debugToolBar.background": "#363537", | |
| "descriptionForeground": "#8b888f", | |
| "diffEditor.insertedTextBackground": "#7bd88f19", | |
| "diffEditor.insertedTextBorder": "#00000000", | |
| "diffEditor.removedTextBackground": "#fc618d19", | |
| "diffEditor.removedTextBorder": "#00000000", | |
| "dropdown.background": "#2b2b2b", | |
| "dropdown.border": "#2b2b2b", | |
| "dropdown.foreground": "#8b888f", | |
| "dropdown.listBackground": "#363537", | |
| "editor.background": "#232323", | |
| "editor.findMatchBackground": "#6905eb26", | |
| "editor.findMatchBorder": "#fce566", | |
| "editor.findMatchHighlightBackground": "#f7f1ff26", | |
| "editor.findMatchHighlightBorder": "#00000000", | |
| "editor.findRangeHighlightBackground": "#f7f1ff0c", | |
| "editor.findRangeHighlightBorder": "#00000000", | |
| "editor.foreground": "#f7f1ff", | |
| "editor.hoverHighlightBackground": "#7a19f80c", | |
| "editor.inactiveSelectionBackground": "#f7f1ff0c", | |
| "editor.lineHighlightBackground": "#f7f1ff0c", | |
| "editor.lineHighlightBorder": "#00000000", | |
| "editor.rangeHighlightBackground": "#363537", | |
| "editor.rangeHighlightBorder": "#363537", | |
| "editor.selectionBackground": "#bab6c026", | |
| "editor.selectionHighlightBackground": "#f7f1ff26", | |
| "editor.selectionHighlightBorder": "#00000000", | |
| "editor.wordHighlightBackground": "#f7f1ff26", | |
| "editor.wordHighlightBorder": "#00000000", | |
| "editor.wordHighlightStrongBackground": "#f7f1ff26", | |
| "editor.wordHighlightStrongBorder": "#00000000", | |
| "editorBracketMatch.background": "#222222", | |
| "editorBracketMatch.border": "#69676c", | |
| "editorCodeLens.foreground": "#69676c", | |
| "editorCursor.background": "#222222", | |
| "editorCursor.foreground": "#f7f1ff", | |
| "editorError.border": "#00000000", | |
| "editorError.foreground": "#fc618d", | |
| "editorGroup.border": "#191919", | |
| "editorGroup.dropBackground": "#191919bf", | |
| "editorGroup.emptyBackground": "#131313", | |
| "editorGroup.focusedEmptyBorder": "#191919", | |
| "editorGroupHeader.noTabsBackground": "#222222", | |
| "editorGroupHeader.tabsBackground": "#222222", | |
| "editorGroupHeader.tabsBorder": "#222222", | |
| "editorGutter.addedBackground": "#7bd88f", | |
| "editorGutter.background": "#222222", | |
| "editorGutter.deletedBackground": "#fc618d", | |
| "editorGutter.modifiedBackground": "#fd9353", | |
| "editorHint.border": "#222222", | |
| "editorHint.foreground": "#948ae3", | |
| "editorHoverWidget.background": "#363537", | |
| "editorHoverWidget.border": "#222222", | |
| "editorIndentGuide.background": "#363537", | |
| "editorInfo.border": "#222222", | |
| "editorInfo.foreground": "#5ad4e6", | |
| "editorLightBulb.foreground": "#ffd866", | |
| "editorLightBulbAutoFix.foreground": "#a9dc76", | |
| "editorLineNumber.activeForeground": "#bab6c0", | |
| "editorLineNumber.foreground": "#525053", | |
| "editorLink.activeForeground": "#5ad4e6", | |
| "editorMarkerNavigation.background": "#363537", | |
| "editorMarkerNavigationError.background": "#fc618d", | |
| "editorMarkerNavigationInfo.background": "#5ad4e6", | |
| "editorMarkerNavigationWarning.background": "#fd9353", | |
| "editorOverviewRuler.addedForeground": "#7bd88f", | |
| "editorOverviewRuler.border": "#222222", | |
| "editorOverviewRuler.currentContentForeground": "#363537", | |
| "editorOverviewRuler.deletedForeground": "#fc618d", | |
| "editorOverviewRuler.errorForeground": "#fc618d", | |
| "editorOverviewRuler.findMatchForeground": "#f7f1ff26", | |
| "editorOverviewRuler.incomingContentForeground": "#363537", | |
| "editorOverviewRuler.infoForeground": "#5ad4e6", | |
| "editorOverviewRuler.modifiedForeground": "#fd9353", | |
| "editorOverviewRuler.rangeHighlightForeground": "#f7f1ff26", | |
| "editorOverviewRuler.selectionHighlightForeground": "#f7f1ff26", | |
| "editorOverviewRuler.warningForeground": "#fd9353", | |
| "editorOverviewRuler.wordHighlightForeground": "#f7f1ff26", | |
| "editorOverviewRuler.wordHighlightStrongForeground": "#f7f1ff26", | |
| "editorPane.background": "#222222", | |
| "editorRuler.foreground": "#525053", | |
| "editorSuggestWidget.background": "#363537", | |
| "editorSuggestWidget.border": "#363537", | |
| "editorSuggestWidget.foreground": "#bab6c0", | |
| "editorSuggestWidget.highlightForeground": "#f7f1ff", | |
| "editorSuggestWidget.selectedBackground": "#69676c", | |
| "editorWarning.border": "#00000000", | |
| "editorWarning.foreground": "#fd9353", | |
| "editorWhitespace.foreground": "#525053", | |
| "editorWidget.background": "#363537", | |
| "editorWidget.border": "#363537", | |
| "errorForeground": "#fc618d", | |
| "extensionButton.prominentBackground": "#363537", | |
| "extensionButton.prominentForeground": "#f7f1ff", | |
| "extensionButton.prominentHoverBackground": "#525053", | |
| "focusBorder": "#69676c", | |
| "foreground": "#f7f1ff", | |
| "gitDecoration.addedResourceForeground": "#a9dc76", | |
| "gitDecoration.conflictingResourceForeground": "#fd9353", | |
| "gitDecoration.deletedResourceForeground": "#fc618d", | |
| "gitDecoration.ignoredResourceForeground": "#525053", | |
| "gitDecoration.modifiedResourceForeground": "#7bd88f", | |
| "gitDecoration.stageDeletedResourceForeground": "#ff6188", | |
| "gitDecoration.stageModifiedResourceForeground": "#ffd866", | |
| "gitDecoration.untrackedResourceForeground": "#fd9353", | |
| "input.background": "#363537", | |
| "input.border": "#363537", | |
| "input.foreground": "#f7f1ff", | |
| "input.placeholderForeground": "#69676c", | |
| "inputOption.activeBackground": "#5b595c", | |
| "inputOption.activeBorder": "#525053", | |
| "inputValidation.errorBackground": "#363537", | |
| "inputValidation.errorBorder": "#fc618d", | |
| "inputValidation.errorForeground": "#fc618d", | |
| "inputValidation.infoBackground": "#363537", | |
| "inputValidation.infoBorder": "#5ad4e6", | |
| "inputValidation.infoForeground": "#5ad4e6", | |
| "inputValidation.warningBackground": "#363537", | |
| "inputValidation.warningBorder": "#fd9353", | |
| "inputValidation.warningForeground": "#fd9353", | |
| "list.activeSelectionBackground": "#333030", | |
| "list.activeSelectionForeground": "#fce566", | |
| "list.dropBackground": "#191919bf", | |
| "list.errorForeground": "#fd366f", | |
| "list.focusBackground": "#222222", | |
| "list.focusForeground": "#f7f1ff", | |
| "list.highlightForeground": "#f7f1ff", | |
| "list.hoverBackground": "#191919", | |
| "list.hoverForeground": "#f7f1ff", | |
| "list.inactiveFocusBackground": "#222222", | |
| "list.inactiveSelectionBackground": "#383636", | |
| "list.inactiveSelectionForeground": "#f9e64f", | |
| "list.invalidItemForeground": "#fc618d", | |
| "list.warningForeground": "#fd9353", | |
| "listFilterWidget.background": "#222222", | |
| "listFilterWidget.noMatchesOutline": "#fc618d", | |
| "listFilterWidget.outline": "#222222", | |
| "merge.border": "#222222", | |
| "merge.commonContentBackground": "#f7f1ff19", | |
| "merge.commonHeaderBackground": "#f7f1ff26", | |
| "merge.currentContentBackground": "#fc618d19", | |
| "merge.currentHeaderBackground": "#fc618d26", | |
| "merge.incomingContentBackground": "#7bd88f19", | |
| "merge.incomingHeaderBackground": "#7bd88f26", | |
| "minimap.errorHighlight": "#ff6188", | |
| "minimap.warningHighlight": "#fc9867", | |
| "minimapGutter.addedBackground": "#a9dc76", | |
| "minimapGutter.deletedBackground": "#ff6188", | |
| "minimapGutter.modifiedBackground": "#ffd866", | |
| "notificationCenter.border": "#363537", | |
| "notificationCenterHeader.background": "#363537", | |
| "notificationCenterHeader.foreground": "#8b888f", | |
| "notificationLink.foreground": "#fce566", | |
| "notificationToast.border": "#363537", | |
| "notifications.background": "#363537", | |
| "notifications.border": "#363537", | |
| "notifications.foreground": "#bab6c0", | |
| "notificationsErrorIcon.foreground": "#ff6188", | |
| "notificationsInfoIcon.foreground": "#78dce8", | |
| "notificationsWarningIcon.foreground": "#fc9867", | |
| "panel.background": "#1f1f1f", | |
| "panel.border": "#131313", | |
| "panelTitle.activeBorder": "#fce566", | |
| "panelTitle.activeForeground": "#fce566", | |
| "panelTitle.inactiveForeground": "#8b888f", | |
| "peekView.border": "#222222", | |
| "peekViewEditor.background": "#363537", | |
| "peekViewEditor.matchHighlightBackground": "#525053", | |
| "peekViewEditorGutter.background": "#363537", | |
| "peekViewResult.background": "#363537", | |
| "peekViewResult.fileForeground": "#8b888f", | |
| "peekViewResult.lineForeground": "#8b888f", | |
| "peekViewResult.matchHighlightBackground": "#525053", | |
| "peekViewResult.selectionBackground": "#363537", | |
| "peekViewResult.selectionForeground": "#f7f1ff", | |
| "peekViewTitle.background": "#363537", | |
| "peekViewTitleDescription.foreground": "#8b888f", | |
| "peekViewTitleLabel.foreground": "#f7f1ff", | |
| "pickerGroup.border": "#222222", | |
| "pickerGroup.foreground": "#525053", | |
| "problemsErrorIcon.foreground": "#ff6188", | |
| "problemsInfoIcon.foreground": "#78dce8", | |
| "problemsWarningIcon.foreground": "#fc9867", | |
| "progressBar.background": "#363537", | |
| "scrollbar.shadow": "#222222", | |
| "scrollbarSlider.activeBackground": "#f7f1ff12", | |
| "scrollbarSlider.background": "#f7f1ff12", | |
| "scrollbarSlider.hoverBackground": "#f7f1ff12", | |
| "selection.background": "#bab6c026", | |
| "settings.checkboxBackground": "#363537", | |
| "settings.checkboxBorder": "#363537", | |
| "settings.checkboxForeground": "#f7f1ff", | |
| "settings.dropdownBackground": "#363537", | |
| "settings.dropdownBorder": "#363537", | |
| "settings.dropdownForeground": "#f7f1ff", | |
| "settings.dropdownListBorder": "#8b888f", | |
| "settings.headerForeground": "#fce566", | |
| "settings.modifiedItemIndicator": "#fce566", | |
| "settings.numberInputBackground": "#363537", | |
| "settings.numberInputBorder": "#363537", | |
| "settings.numberInputForeground": "#f7f1ff", | |
| "settings.textInputBackground": "#363537", | |
| "settings.textInputBorder": "#363537", | |
| "settings.textInputForeground": "#f7f1ff", | |
| "sideBar.background": "#222020", | |
| "sideBar.border": "#181717", | |
| "sideBar.dropBackground": "#191919bf", | |
| "sideBar.foreground": "#89868d", | |
| "sideBarSectionHeader.background": "#2b2b2b", | |
| "sideBarSectionHeader.foreground": "#69676c", | |
| "sideBarTitle.foreground": "#525053", | |
| "statusBar.background": "#b52e31", | |
| "statusBar.border": "#131313", | |
| "statusBar.debuggingBackground": "#69676c", | |
| "statusBar.debuggingBorder": "#191919", | |
| "statusBar.debuggingForeground": "#f7f1ff", | |
| "statusBar.foreground": "#e7e7e7", | |
| "statusBar.noFolderBackground": "#191919", | |
| "statusBar.noFolderBorder": "#131313", | |
| "statusBar.noFolderForeground": "#69676c", | |
| "statusBarItem.activeBackground": "#222222", | |
| "statusBarItem.hoverBackground": "#d04649", | |
| "statusBarItem.prominentBackground": "#363537", | |
| "statusBarItem.prominentHoverBackground": "#363537", | |
| "statusBarItem.remoteBackground": "#221f22", | |
| "statusBarItem.remoteForeground": "#a9dc76", | |
| "symbolIcon.arrayForeground": "#ff6188", | |
| "symbolIcon.booleanForeground": "#ff6188", | |
| "symbolIcon.classForeground": "#78dce8", | |
| "symbolIcon.colorForeground": "#ab9df2", | |
| "symbolIcon.constantForeground": "#ab9df2", | |
| "symbolIcon.constructorForeground": "#a9dc76", | |
| "symbolIcon.enumeratorForeground": "#fc9867", | |
| "symbolIcon.enumeratorMemberForeground": "#fc9867", | |
| "symbolIcon.eventForeground": "#fc9867", | |
| "symbolIcon.fieldForeground": "#fc9867", | |
| "symbolIcon.fileForeground": "#c1c0c0", | |
| "symbolIcon.folderForeground": "#c1c0c0", | |
| "symbolIcon.functionForeground": "#a9dc76", | |
| "symbolIcon.interfaceForeground": "#78dce8", | |
| "symbolIcon.keyForeground": "#fc9867", | |
| "symbolIcon.keywordForeground": "#ff6188", | |
| "symbolIcon.methodForeground": "#a9dc76", | |
| "symbolIcon.moduleForeground": "#78dce8", | |
| "symbolIcon.namespaceForeground": "#78dce8", | |
| "symbolIcon.nullForeground": "#ab9df2", | |
| "symbolIcon.numberForeground": "#ab9df2", | |
| "symbolIcon.objectForeground": "#78dce8", | |
| "symbolIcon.operatorForeground": "#ff6188", | |
| "symbolIcon.packageForeground": "#ab9df2", | |
| "symbolIcon.propertyForeground": "#fc9867", | |
| "symbolIcon.referenceForeground": "#ab9df2", | |
| "symbolIcon.snippetForeground": "#a9dc76", | |
| "symbolIcon.stringForeground": "#ffd866", | |
| "symbolIcon.structForeground": "#ff6188", | |
| "symbolIcon.textForeground": "#ffd866", | |
| "symbolIcon.typeParameterForeground": "#fc9867", | |
| "symbolIcon.unitForeground": "#ab9df2", | |
| "symbolIcon.variableForeground": "#78dce8", | |
| "tab.activeBackground": "#222222", | |
| "tab.activeBorder": "#f9e64f", | |
| "tab.activeForeground": "#f9e64f", | |
| "tab.activeModifiedBorder": "#525053", | |
| "tab.border": "#222222", | |
| "tab.hoverBackground": "#2b2b2b", | |
| "tab.hoverBorder": "#525053", | |
| "tab.inactiveBackground": "#222222", | |
| "tab.inactiveForeground": "#89868d", | |
| "tab.inactiveModifiedBorder": "#525053", | |
| "tab.lastPinnedBorder": "#5b595c", | |
| "tab.unfocusedActiveBorder": "#8b888f", | |
| "tab.unfocusedActiveForeground": "#bab6c0", | |
| "tab.unfocusedActiveModifiedBorder": "#363537", | |
| "tab.unfocusedHoverBackground": "#2b2b2b", | |
| "tab.unfocusedHoverBorder": "#222222", | |
| "tab.unfocusedInactiveForeground": "#8b888f", | |
| "tab.unfocusedInactiveModifiedBorder": "#363537", | |
| "terminal.ansiBlack": "#2b2b2b", | |
| "terminal.ansiBlue": "#fc9867", | |
| "terminal.ansiBrightBlack": "#727072", | |
| "terminal.ansiBrightBlue": "#fc9867", | |
| "terminal.ansiBrightCyan": "#78dce8", | |
| "terminal.ansiBrightGreen": "#a9dc76", | |
| "terminal.ansiBrightMagenta": "#ab9df2", | |
| "terminal.ansiBrightRed": "#d53b4b", | |
| "terminal.ansiBrightWhite": "#fcfcfa", | |
| "terminal.ansiBrightYellow": "#ffd866", | |
| "terminal.ansiCyan": "#78dce8", | |
| "terminal.ansiGreen": "#95c436", | |
| "terminal.ansiMagenta": "#ab9df2", | |
| "terminal.ansiRed": "#bb3543", | |
| "terminal.ansiWhite": "#fcfcfa", | |
| "terminal.ansiYellow": "#ffd866", | |
| "terminal.background": "#232323", | |
| "terminal.foreground": "#fcfcfa", | |
| "terminal.selectionBackground": "#fcfcfa26", | |
| "terminalCursor.background": "#00000000", | |
| "terminalCursor.foreground": "#fcfcfa", | |
| "textBlockQuote.background": "#363537", | |
| "textBlockQuote.border": "#363537", | |
| "textCodeBlock.background": "#363537", | |
| "textLink.activeForeground": "#f7f1ff", | |
| "textLink.foreground": "#fce566", | |
| "textPreformat.foreground": "#f7f1ff", | |
| "textSeparator.foreground": "#69676c", | |
| "titleBar.activeBackground": "#b52e31", | |
| "titleBar.activeForeground": "#e7e7e7", | |
| "titleBar.border": "#131313", | |
| "titleBar.inactiveBackground": "#b52e3199", | |
| "titleBar.inactiveForeground": "#e7e7e799", | |
| "walkThrough.embeddedEditorBackground": "#191919", | |
| "welcomePage.buttonBackground": "#363537", | |
| "welcomePage.buttonHoverBackground": "#525053", | |
| "widget.shadow": "#131313", | |
| }, | |
| "terminal.integrated.rendererType": "dom", | |
| } | |
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment