https://github.com/davidcreador/passion-theme-vscode
Repo for the passion theme
https://github.com/davidcreador/passion-theme-vscode
Last synced: 6 months ago
JSON representation
Repo for the passion theme
- Host: GitHub
- URL: https://github.com/davidcreador/passion-theme-vscode
- Owner: Davidcreador
- Created: 2018-11-30T01:39:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-04-20T02:45:38.000Z (over 6 years ago)
- Last Synced: 2025-07-18T11:43:52.931Z (about 1 year ago)
- Size: 25.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# PASSION THEME
## Installation
- Open the Extensions sidebar in VS Code
- Search for Passion Theme
- Click Install and Reload
- Open the Command Palette with `Ctrl+Shift+P`
- Select Preferences: `Color Theme and choose a Passion variant`.
- Enjoy! 🎉 Also, check out some of the personalization options below...
## Personalization
VS Code makes it easy to customize just about every aspect of your editor.
If you want to change something, open the Command Palette with `Ctrl+Shift+P` and select **Preferences: Open Settings (JSON)**. You can then override VS Code's defaults or Passion's colors in the right side of the settings view.
Check out some of the personalization options below to customize Passion to suit your taste.
For more info on theming, visit the [Extension Authoring Guide](https://code.visualstudio.com/docs/extensions/themes-snippets-colorizers) and [Theme Color Reference](https://code.visualstudio.com/docs/getstarted/theme-color-reference).
### Sidebar Contrast
```
"workbench.colorCustomizations": {
"activityBar.background": "#1E2028",
"activityBar.border": "#1E2028",
"sideBar.background": "#1E2028",
"sideBar.border": "#1C1E26"
}
```
### Tag Brackets `<>`
```
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "HTML tag brackets",
"scope": ["punctuation.definition.tag"],
"settings": {
"foreground": "#BBBBBB"
}
}
]
}
```
## License
[MIT](LICENSE) © [David Pastor](https://github.com/davidcreador)