Skip to content

Instantly share code, notes, and snippets.

@gmtborges
Last active October 6, 2021 18:18
Show Gist options
  • Save gmtborges/bf27a9e5e6574d44ce245d648264aa14 to your computer and use it in GitHub Desktop.
Save gmtborges/bf27a9e5e6574d44ce245d648264aa14 to your computer and use it in GitHub Desktop.
VSCode Custom Colors
"workbench.colorCustomizations": {
"[Braver's Solarized Dark (themed workbench)]": {
"editorCursor.foreground": "#839495"
},
},
"editor.tokenColorCustomizations": {
"[Braver's Solarized Dark (themed workbench)]": {
"textMateRules": [
{
"scope": ["meta.brace.square", "variable"],
"settings": {
"foreground": "#839496",
}
},
{
"scope": ["entity.name.function", "meta.class"],
"settings": {
"foreground": "#268ad2",
}
},
{
"scope": ["variable.language.this", "support.class"],
"settings": {
"foreground": "#b58900",
}
},
{
"scope": ["constant.numeric"],
"settings": {
"foreground": "#d33582",
}
},
{
"scope": ["storage.type"],
"settings": {
"foreground": "#CB4B16",
}
},
{
"scope": ["constant.numeric"],
"settings": {
"foreground": "#2AA198",
}
},
]
},
"[Braver's Solarized Light (themed workbench)]": {
"textMateRules": [
{
"scope": [
"meta.brace.square",
"variable"
],
"settings": {
"foreground": "#657B83",
}
},
{
"scope": [
"entity.name.function",
"meta.class",
],
"settings": {
"foreground": "#268ad2",
}
},
{
"scope": [
"variable.language.this",
"support.class"
],
"settings": {
"foreground": "#b58900",
}
},
{
"scope": [
"constant.numeric"
],
"settings": {
"foreground": "#d33582",
}
},
{
"scope": [
"storage.type"
],
"settings": {
"foreground": "#CB4B16",
}
},
{
"scope": [
"constant.numeric"
],
"settings": {
"foreground": "#2AA198",
}
},
]
},
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment