Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@DenverCoder1
Last active November 24, 2021 15:11
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DenverCoder1/6573f6e8383c3ca328d1f050b173ad54 to your computer and use it in GitHub Desktop.
Save DenverCoder1/6573f6e8383c3ca328d1f050b173ad54 to your computer and use it in GitHub Desktop.
My VS Code Theme Customizations
{
"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