Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mohamed3nan/gray-plus-theme

ðŸŽĻA theme extension for Visual Studio Code based on Drak+ (default dark) Syntax but with Gray UI.
https://github.com/mohamed3nan/gray-plus-theme

dark dark-theme gray gray-theme jetbrains jetbrains-theme pycharm pycharm-theme theme visual-studio visual-studio-code vscode vscode-extension vscode-theme webstorm webstorm-theme

Last synced: 10 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# Gray+ Theme for Visual Studio Code
[![Open in Visual Studio Code](https://open.vscode.dev/badges/open-in-vscode.svg)](https://open.vscode.dev/mohamed3nan/gray-plus-theme)
[![Marketplace](https://vsmarketplacebadge.apphb.com/version/Anan.gray-plus-theme.svg)](https://vsmarketplacebadge.apphb.com/version/Anan.gray-plus-theme.svg)
[![Installs](https://vsmarketplacebadge.apphb.com/installs-short/Anan.gray-plus-theme.svg)](https://vsmarketplacebadge.apphb.com/installs-short/Anan.gray-plus-theme.svg)
[![Downloads](https://vsmarketplacebadge.apphb.com/downloads-short/Anan.gray-plus-theme.svg)](https://vsmarketplacebadge.apphb.com/downloads-short/Anan.gray-plus-theme.svg)
[![Rating](https://vsmarketplacebadge.apphb.com/rating-star/Anan.gray-plus-theme.svg)](https://vsmarketplacebadge.apphb.com/rating-star/Anan.gray-plus-theme.svg)

[![Average time to resolve an issue](https://isitmaintained.com/badge/resolution/mohamed3nan/Gray-Plus-Theme.svg)](http://isitmaintained.com/project/mohamed3nan/gray-plus-theme "Average time to resolve an issue")
[![Percentage of issues still open](https://isitmaintained.com/badge/open/mohamed3nan/Gray-Plus-Theme.svg)](http://isitmaintained.com/project/mohamed3nan/gray-plus-theme "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](https://marketplace.visualstudio.com/items?itemName=Anan.gray-plus-theme)

## Screenshot
![ScreenShot](screenshots/terminal.png)

## 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:

```json
"workbench.colorCustomizations": {
"tab.activeBackground": "#282c34",
"activityBar.background": "#282c34",
"sideBar.background": "#282c34"
}
```

or use the setting `editor.tokenColorCustomizations`

```json
"editor.tokenColorCustomizations": {
"[Gray+]": {
"textMateRules": [
{
"scope": ["source.python"],
"settings": {
"foreground": "#e06c75"
}
}
]
}
}
```
### Enablement of semantic highlighting
By default [Semantic Highlighting](https://code.visualstudio.com/api/language-extensions/semantic-highlight-guide#enablement-of-semantic-highlighting) value is true in this theme, you can add this snippet in your "settings.json" file to disable it:
```json
"editor.semanticHighlighting.enabled": false
```

Please check the official documentation,
[Theme Color Reference](https://code.visualstudio.com/docs/getstarted/theme-color-reference) and
[Theme Color](https://code.visualstudio.com/docs/getstarted/themes), for more helpful information.

[More info](https://code.visualstudio.com/updates/v1_15#_user-definable-syntax-highlighting-colors)

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

## Resources
- [VS Code](https://github.com/microsoft/vscode/tree/main/extensions/theme-defaults/themes)

## Changelog
[CHANGELOG](CHANGELOG.md)

## License
This project is licensed under the MIT License - see the
[MIT](LICENSE.txt) file for details.

---

**Enjoy!**