Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mohamed3nan/jetbrains-darcula-theme
ðĻA theme extension for Visual Studio Code based on Darcula theme from Jetbrains IDEs with some improvements.
https://github.com/mohamed3nan/jetbrains-darcula-theme
darcula darcula-theme dark dark-theme jetbrains jetbrains-theme pycharm pycharm-theme theme visual-studio visual-studio-code vscode vscode-extension vscode-theme webstorm webstorm-theme
Last synced: 27 days ago
JSON representation
ðĻA theme extension for Visual Studio Code based on Darcula theme from Jetbrains IDEs with some improvements.
- Host: GitHub
- URL: https://github.com/mohamed3nan/jetbrains-darcula-theme
- Owner: Mohamed3nan
- License: mit
- Created: 2021-06-04T02:19:12.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-13T14:22:51.000Z (about 2 months ago)
- Last Synced: 2024-09-26T06:03:27.202Z (about 1 month ago)
- Topics: darcula, darcula-theme, dark, dark-theme, jetbrains, jetbrains-theme, pycharm, pycharm-theme, theme, visual-studio, visual-studio-code, vscode, vscode-extension, vscode-theme, webstorm, webstorm-theme
- Homepage: https://marketplace.visualstudio.com/items?itemName=Anan.jetbrains-darcula-theme
- Size: 12.3 MB
- Stars: 25
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# JetBrains Darcula Theme for Visual Studio Code
[![Preview in vscode.dev](https://img.shields.io/badge/preview%20in-vscode.dev-blue)](https://vscode.dev/theme/Anan.jetbrains-darcula-theme)
[![Installs](https://vsmarketplacebadges.dev/installs-short/Anan.jetbrains-darcula-theme.png)](https://vsmarketplacebadges.dev/installs-short/Anan.jetbrains-darcula-theme.png)
[![Downloads](https://vsmarketplacebadges.dev/downloads-short/Anan.jetbrains-darcula-theme.png)](https://vsmarketplacebadges.dev/downloads-short/Anan.jetbrains-darcula-theme.png)
[![Rating](https://vsmarketplacebadges.dev/rating-star/Anan.jetbrains-darcula-theme.png)](https://vsmarketplacebadges.dev/rating-star/Anan.jetbrains-darcula-theme.png)
[![Marketplace](https://vsmarketplacebadges.dev/version/Anan.jetbrains-darcula-theme.png)](https://vsmarketplacebadges.dev/version/Anan.jetbrains-darcula-theme.png)A theme extension for Visual Studio Code based on Darcula theme from Jetbrains IDEs with some improvements.
## Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.```ext install Anan.jetbrains-darcula-theme```
or:
[Download from VisualStudio Marketplace](https://marketplace.visualstudio.com/items?itemName=Anan.jetbrains-darcula-theme)## JetBrains Mono Font Installation
- Downloaded and install JetBrains Mono font https://www.jetbrains.com/lp/mono
- Add this snippet in your "settings.json":
```json
"editor.fontFamily": "JetBrains Mono, Consolas, 'Courier New', monospace",
"editor.fontSize": 13,
"editor.lineHeight": 22,
"editor.fontWeight": "300",
```## Screenshots
![ScreenShot](screenshots/ScreenShots.gif)
[View All ScreenShots](screenshots)## 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": {
"[JetBrains Darcula Theme]": {
"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 **false** in this theme, you can add this snippet in your "settings.json" file to disable it:
```json
"editor.semanticHighlighting.enabled": true
```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)
## Syntax Support
Python, Javascript, TypeScript, React, Vue, HTML, Markdown, JSON, CSS, SCSS, Dockerfile, Go, and more...## Contribution
If you want to add more syntax support or have any idea to improve highlighting, feel free to make a pull request or open a new issue.## Inspiration
[One Dark Pro](https://github.com/Binaryify/OneDark-Pro), [PyCharm Theme](https://github.com/nicohlr/vscode-pycharm-theme), [JetBrains](https://www.jetbrains.com), [PyCharm](https://www.jetbrains.com/pycharm/), [WebStorm](https://www.jetbrains.com/webstorm/)## Changelog
[CHANGELOG](CHANGELOG.md)## License
This project is licensed under the MIT License - see the
[MIT](LICENSE.txt) file for details.---
**Enjoy!**