Last active
February 20, 2025 22:04
-
-
Save goldfirere/2f76dbe8326dc1322008e3757cc1e0d8 to your computer and use it in GitHub Desktop.
VSCode color settings (Feb 2024)
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
"workbench.colorCustomizations": { | |
"[One Monokai]": { | |
"editor.background": "#000000", | |
"editor.foreground": "#EEEEEE", | |
"editor.lineHighlightBackground": "#2b2b2b", | |
"editorIndentGuide.background": "#0e0e0e", | |
"editorLineNumber.foreground": "#6e798f", | |
"statusBar.background": "#474b10", | |
"statusBarItem.remoteBackground": "#474b10", | |
"statusBar.foreground": "#b1b1b1", | |
"titleBar.inactiveBackground": "#474b10", | |
"titleBar.inactiveForeground": "#b1b1b1", | |
"titleBar.activeBackground": "#5c6113", | |
"titleBar.activeForeground": "#b1b1b1" | |
}, | |
}, | |
"editor.tokenColorCustomizations": { | |
"[One Monokai]": { | |
"comments": "#a5be16", | |
"textMateRules": [ | |
{ | |
"scope": "entity.name.function", | |
"settings": { | |
"foreground": "#dfac8a" | |
} | |
}, | |
{ "scope": "support.function", | |
"settings": { | |
"foreground": "#369fe6", | |
} | |
}] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment