Skip to content

Mohamed3nan/gray-plus-theme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gray+ Theme for Visual Studio Code

Open in Visual Studio Code Marketplace Installs Downloads Rating

Average time to resolve an issue Percentage of issues still open

Description

A theme extension for Visual Studio Code based on Drak+ (default dark) Syntax but with Gray UI.

Installation

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

Screenshot

ScreenShot

Tweaks & theming

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"
        }
      }
    ]
  }
}

Enablement of semantic highlighting

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.

More info

Contribution

Feel free to make a pull request or open a new issue.

Resources

Changelog

CHANGELOG

License

This project is licensed under the MIT License - see the MIT file for details.


Enjoy!