Skip to content

Instantly share code, notes, and snippets.

@denniskb
Last active December 31, 2022 17:42
Show Gist options
  • Save denniskb/cb77bc414f0fabcd6aea571e9a5ed0c9 to your computer and use it in GitHub Desktop.
Save denniskb/cb77bc414f0fabcd6aea571e9a5ed0c9 to your computer and use it in GitHub Desktop.
VSCode "Aspirin C" Color Theme
{
"name": "Aspirin C",
"type": "dark",
"colors": {
"editor.background": "#1c1c1d",
"editor.foreground": "#cdc",
"tab.activeBorder": "#999",
"editorLineNumber.foreground": "#333",
"editorLineNumber.activeForeground": "#ccc",
"editorIndentGuide.background": "#292929"
},
"tokenColors": [
{
"name": "Comments",
"scope": "comment",
"settings": {
"foreground": "#85ae83"
}
},
{
"name": "Strings",
"scope": "string, variable.other.enummember",
"settings": {
"foreground": "#e0b78b"
}
},
{
"scope": "meta.preprocessor, entity.name.function.preprocessor, keyword.preprocessor, keyword.control.directive",
"settings": {
"foreground": "#d05c5e"
}
},
{
"name": "Variables",
"scope": "variable",
"settings": {
"foreground": "#ffa666"
}
},
{
"name": "Functions",
"scope": "function, entity.name.function",
"settings": {
"foreground": "#82cfe9"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment