Skip to content

Instantly share code, notes, and snippets.

@lesliearkorful
Last active May 5, 2021 12:10
Show Gist options
  • Save lesliearkorful/2d750d18faef179d156e29afc3c91f9b to your computer and use it in GitHub Desktop.
Save lesliearkorful/2d750d18faef179d156e29afc3c91f9b to your computer and use it in GitHub Desktop.
A color customization snippet for Github Light and Dark Themes in VS Code
"editor.semanticTokenColorCustomizations": {
"enabled": true
},
"workbench.colorCustomizations": {
"[GitHub Dark]": {
"statusBar.debuggingBackground": "#af5c19",
"statusBar.background": "#1767c3",
"statusBar.foreground": "#ffffff",
"statusBar.noFolderBorder": "#000000",
"editor.background": "#1f262b",
"editorGutter.background": "#1a2125",
"tab.activeBackground": "#1f262b",
"tab.inactiveBackground": "#171e22",
"sideBar.background": "#1a2125",
"sideBar.border": "#000000",
"panel.background": "#1a2125",
"panel.border": "#000000",
},
"[GitHub Light]": {
"statusBar.debuggingBackground": "#af5c19",
"statusBar.background": "#1767c3",
"statusBar.foreground": "#ffffff",
"statusBar.noFolderForeground": "#4d4d4d",
"editorGutter.background": "#f5f8fa6e"
},
},
"editor.tokenColorCustomizations": {
"[GitHub Dark]": {
"strings": "#ffae6c",
"numbers": "#a2dd73",
"textMateRules": [
{
"scope": "keyword.operator",
"settings": {
// "foreground": "#65baff"
"foreground": "#ffffff"
}
},
{
"scope": "entity.name.function",
"settings": {
// "foreground": "#cfadff"
"foreground": "#ffe96e"
}
},
// {
// "scope": "storage.type",
// "settings": {
// "foreground": "#c7ff7d"
// }
// }
]
},
"[GitHub Light]": {
"strings": "#86562e",
"numbers": "#3e6e15"
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment