A theme extension for Visual Studio Code based on Drak+ (default dark) Syntax but with Gray UI.
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
ext install anan.gray-plus-theme
or:
Download from VisualStudio Marketplace
If you want to play around with new colors, use the setting
workbench.colorCustomizations
to customize the currently selected theme. For
example, you can add this snippet in your "settings.json" file:
"workbench.colorCustomizations": {
"tab.activeBackground": "#282c34",
"activityBar.background": "#282c34",
"sideBar.background": "#282c34"
}
or use the setting editor.tokenColorCustomizations
"editor.tokenColorCustomizations": {
"[Gray+]": {
"textMateRules": [
{
"scope": ["source.python"],
"settings": {
"foreground": "#e06c75"
}
}
]
}
}
By default Semantic Highlighting value is true in this theme, you can add this snippet in your "settings.json" file to disable it:
"editor.semanticHighlighting.enabled": false
Please check the official documentation, Theme Color Reference and Theme Color, for more helpful information.
Feel free to make a pull request or open a new issue.
This project is licensed under the MIT License - see the MIT file for details.
Enjoy!