Last active
November 24, 2021 15:11
-
-
Save DenverCoder1/6573f6e8383c3ca328d1f050b173ad54 to your computer and use it in GitHub Desktop.
My VS Code Theme Customizations
This file contains 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
Show hidden characters
{ | |
"workbench.colorTheme": "Cobalt2", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.colorCustomizations": { | |
"editor.lineHighlightBackground": "#0088aa20", | |
"editor.lineHighlightBorder": "#0088aa20", | |
"editorCursor.foreground": "#00ffd5", | |
"editor.background": "#00141d", | |
"editorGutter.background": "#00141d", | |
"editor.selectionBackground": "#00ffff55", | |
"editor.findMatchHighlightBorder": "#00ffff80", | |
"editor.findRangeHighlightBorder": "#00ffff80", | |
"editor.findMatchHighlightBackground": "#00ffff10", | |
"editor.findMatchBorder": "#00BCD4", | |
"editor.findMatchBackground": "#00ffff50", | |
"sideBar.background": "#001d3290" | |
}, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
// change color of comments | |
"scope": [ | |
"comment", | |
"punctuation.definition.comment", | |
"comment.block", | |
"comment.line", | |
"comment.block.documentation" | |
], | |
"settings": { | |
"foreground": "#8bc0c0" | |
} | |
} | |
] | |
}, | |
"editor.fontFamily": "'Fira Code'", | |
"editor.fontLigatures": false, | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment