Created
March 22, 2026 19:26
-
-
Save chausen/f41adc6ba4e4312d0776f1b085335551 to your computer and use it in GitHub Desktop.
VS Code Color Customizations
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
| { | |
| "workbench.colorCustomizations": { | |
| "[Default Dark Modern]": { | |
| "editor.background": "#0c0c0c", | |
| "sideBar.background": "#0c0c0c", | |
| "tab.activeBackground": "#0c0c0c", | |
| "terminal.background": "#0c0c0c" | |
| } | |
| }, | |
| "editor.tokenColorCustomizations": { | |
| "[Experimental Dark]": { | |
| "textMateRules": [ | |
| { | |
| "name": "Lua Variables", | |
| "scope": "variable.other.lua", | |
| "settings": { | |
| "foreground": "#bbbebf" | |
| } | |
| }, | |
| { | |
| "name": "Lua Parameters", | |
| "scope": "variable.parameter.lua", | |
| "settings": { | |
| "foreground": "#C5CCD6" | |
| } | |
| }, | |
| { | |
| "name": "Lua Fields", | |
| "scope": "entity.other.attribute.lua", | |
| "settings": { | |
| "foreground": "#C5CCD6" | |
| } | |
| } | |
| ] | |
| }, | |
| "[Default Dark Modern]": { | |
| "textMateRules": [ | |
| { | |
| "name": "Lua Variables", | |
| "scope": "variable.other.lua", | |
| "settings": { | |
| "foreground": "#CCCCCC" | |
| } | |
| }, | |
| { | |
| "name": "Lua Parameters", | |
| "scope": "variable.parameter.lua", | |
| "settings": { | |
| "foreground": "#CCCCCC" | |
| } | |
| }, | |
| { | |
| "name": "Lua Fields", | |
| "scope": "entity.other.attribute.lua", | |
| "settings": { | |
| "foreground": "#CCCCCC" | |
| } | |
| }, | |
| { | |
| "name": "Lua Operator Keywords", | |
| "scope": "keyword.operator.lua", | |
| "settings": { | |
| "foreground": "#9CDCFE" | |
| } | |
| }, | |
| { | |
| "name": "C++ Variables", | |
| "scope": "variable.other.local.cpp", | |
| "settings": { | |
| "foreground": "#CCCCCC" | |
| } | |
| }, | |
| { | |
| "name": "C# Variables", | |
| "scope": "entity.name.variable.local.cs", | |
| "settings": { | |
| "foreground": "#D4D4D4" | |
| } | |
| }, | |
| { | |
| "name": "Java Implemented Interfaces", | |
| "scope": "entity.other.inherited-class.java", | |
| "settings": { | |
| "foreground": "#C586C0" | |
| } | |
| }, | |
| { | |
| "name": "Java Function Calls", | |
| "scope": ["meta.function-call.java"], | |
| "settings": { | |
| "foreground": "#D4D4D4" | |
| } | |
| }, | |
| { | |
| "name": "Java Variables", | |
| "scope": "variable.other.object.java", | |
| "settings": { | |
| "foreground": "#D4D4D4" | |
| } | |
| } | |
| ] | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment