Skip to content

Instantly share code, notes, and snippets.

@denniskb
Last active August 26, 2023 10:03
Show Gist options
  • Save denniskb/3e5d10034153c33a3c4a84eac8ef11e9 to your computer and use it in GitHub Desktop.
Save denniskb/3e5d10034153c33a3c4a84eac8ef11e9 to your computer and use it in GitHub Desktop.
Yello vscode color theme
{
"name": "Yello",
"type": "dark",
"colors": {
"editor.background": "#2a2a2a",
"editor.foreground": "#fff2cc",
"tab.activeBorder": "#999",
"editorLineNumber.foreground": "#444",
"editorLineNumber.activeForeground": "#fff2cc",
"editorIndentGuide.background": "#292929"
},
"tokenColors": [
{
"name": "Comments",
"scope": "comment",
"settings": {
"foreground": "#ffcc99"
}
},
{
"name": "Numbers",
"scope": "number, constant, constant.numeric, keyword.operator",
"settings": {
"foreground": "#fff"
}
},
{
"name": "Strings",
"scope": "string, variable.other.enummember",
"settings": {
"foreground": "#fff"
}
},
{
"scope": "meta.preprocessor, entity.name.function.preprocessor, keyword.preprocessor, keyword.control.directive",
"settings": {
"foreground": "#ff6a6a"
}
},
{
"name": "Variables",
"scope": "variable",
"settings": {
"foreground": "#ffd966"
}
},
{
"name": "Functions",
"scope": "function, entity.name.function",
"settings": {
"foreground": "#48d1cc"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment