Created
September 21, 2023 21:45
-
-
Save drewlsvern/609949910dbe9be0c4cd064534813213 to your computer and use it in GitHub Desktop.
vs code custom colors
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
{ | |
"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