Last active
December 31, 2022 17:42
-
-
Save denniskb/cb77bc414f0fabcd6aea571e9a5ed0c9 to your computer and use it in GitHub Desktop.
VSCode "Aspirin C" Color Theme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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