Skip to content

Instantly share code, notes, and snippets.

@afkcodes
Created July 3, 2024 07:40
Show Gist options
  • Select an option

  • Save afkcodes/d936dd85cdb6c2ee9edf7390b6e0e838 to your computer and use it in GitHub Desktop.

Select an option

Save afkcodes/d936dd85cdb6c2ee9edf7390b6e0e838 to your computer and use it in GitHub Desktop.
VS Code custom theme vars
"workbench.colorCustomizations": {
"editor.background": "#131313",
"editor.foreground": "#EEFFFF",
"sideBar.background": "#131313",
"sideBar.foreground": "#B0BEC5",
"sideBar.border": "#2A2A2A",
"activityBar.background": "#131313",
"activityBar.foreground": "#EEFFFF",
"activityBar.border": "#2A2A2A",
"statusBar.background": "#131313",
"statusBar.foreground": "#EEFFFF",
"statusBar.border": "#2A2A2A",
"titleBar.activeBackground": "#131313",
"titleBar.activeForeground": "#EEFFFF",
"titleBar.border": "#2A2A2A",
"tab.activeBackground": "#151515",
"tab.inactiveBackground": "#131313",
"tab.activeForeground": "#EEFFFF",
"tab.inactiveForeground": "#B0BEC5",
"tab.activeBorder": "#80CBC4",
"tab.border": "#2A2A2A",
"editorGroupHeader.tabsBackground": "#131313",
"editorGroupHeader.tabsBorder": "#2A2A2A",
"panel.background": "#131313",
"panel.border": "#2A2A2A",
"terminal.background": "#151515",
"terminal.foreground": "#EEFFFF",
"terminal.border": "#2A2A2A",
"editorGutter.background": "#131313",
"editorLineNumber.foreground": "#616161",
"editor.lineHighlightBackground": "#212121",
"editor.selectionBackground": "#263238",
"editor.selectionHighlightBorder": "#3A3A3A",
"list.activeSelectionBackground": "#212121",
"list.hoverBackground": "#232323",
"list.highlightForeground": "#80CBC4",
"input.background": "#212121",
"input.foreground": "#EEFFFF",
"input.border": "#3A3A3A",
"dropdown.background": "#212121",
"dropdown.foreground": "#EEFFFF",
"dropdown.border": "#3A3A3A",
"editorWidget.border": "#3A3A3A",
"editorSuggestWidget.background": "#212121",
"editorSuggestWidget.border": "#3A3A3A",
"editorSuggestWidget.selectedBackground": "#2A2A2A",
"menu.border": "#3A3A3A",
"menu.separatorBackground": "#3A3A3A",
"tree.indentGuidesStroke": "#3A3A3A",
"editorIndentGuide.background1": "#2A2A2A",
"editorIndentGuide.activeBackground1": "#3A3A3A"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"foreground": "#5D6C7B"
}
},
{
"scope": "entity.name.function",
"settings": {
"foreground": "#61AFEF"
}
},
{
"scope": "function, keyword, variable.language, storage.type",
"settings": {
"foreground": "#d4a30fde"
}
},
{
"scope": "keyword",
"settings": {
"foreground": "#C678DD"
}
},
{
"scope": "string",
"settings": {
"foreground": "#3db18a"
}
},
{
"scope": "variable",
"settings": {
"foreground": "#E06C75"
}
},
{
"scope": "number",
"settings": {
"foreground": "#D19A66"
}
},
{
"scope": "type",
"settings": {
"foreground": "#56B6C2"
}
},
{
"scope": "constant",
"settings": {
"foreground": "#E5C07B"
}
},
{
"scope": "operator",
"settings": {
"foreground": "#56B6C2"
}
},
{
"scope": "class",
"settings": {
"foreground": "#E5C07B"
}
},
{
"scope": "interface",
"settings": {
"foreground": "#56B6C2"
}
},
{
"scope": "punctuation",
"settings": {
"foreground": "#ABB2BF"
}
},
{
"scope": "namespace",
"settings": {
"foreground": "#E06C75"
}
},
{
"scope": "typeParameter",
"settings": {
"foreground": "#D19A66"
}
},
{
"scope": "enumMember",
"settings": {
"foreground": "#98C379"
}
},
{
"scope": "enum",
"settings": {
"foreground": "#E5C07B"
}
},
{
"scope": "module",
"settings": {
"foreground": "#61AFEF"
}
},
{
"scope": "property",
"settings": {
"foreground": "#E06C75"
}
},
{
"scope": "label",
"settings": {
"foreground": "#C678DD"
}
},
{
"scope": "annotation",
"settings": {
"foreground": "#61AFEF"
}
},
{
"scope": "decorator",
"settings": {
"foreground": "#56B6C2"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment