Skip to content

Instantly share code, notes, and snippets.

@drewlsvern
Created September 21, 2023 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drewlsvern/609949910dbe9be0c4cd064534813213 to your computer and use it in GitHub Desktop.
Save drewlsvern/609949910dbe9be0c4cd064534813213 to your computer and use it in GitHub Desktop.
vs code custom colors
{
"diffEditor.hideUnchangedRegions.enabled": true,
"workbench.colorTheme": "Darker than One Dark Pro (Contrast)",
"editor.mouseWheelZoom": true,
"workbench.colorCustomizations": {
"list.activeSelectionForeground": "#FF990F",
"list.inactiveSelectionForeground": "#FF990F",
"sideBar.foreground": "#e2e2dc",
"editor.lineHighlightBackground": "#33363A",
"gitlens.trailingLineForegroundColor":"#c7a674"
},
"editor.tokenColorCustomizations": {
"textMateRules": [{
"scope": "punctuation.separator",
"settings": {
"foreground": "#0cee0c"
},
},
{
"scope": "punctuation.terminator",
"settings": {
"foreground": "#00ffff"
},
}]
},
"gitlens.hovers.currentLine.over": "line"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment