Skip to content

Instantly share code, notes, and snippets.

@chausen
Created March 22, 2026 19:26
Show Gist options
  • Select an option

  • Save chausen/f41adc6ba4e4312d0776f1b085335551 to your computer and use it in GitHub Desktop.

Select an option

Save chausen/f41adc6ba4e4312d0776f1b085335551 to your computer and use it in GitHub Desktop.
VS Code Color Customizations
{
"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