PyCharm's Darcula syntax theme ported with care to VS Code
- Dark & Light GUI options
- Optimized for Python + support for many popular languages
- MagicPython RegEx highlighting
- Jinja & Django Template support (See Template Support)
- Overridable base highlight (See Customization)
Light GUI | Dark GUI |
---|---|
Use one of these plugins:
To change the base text color, use a snippet like this in your settings.json
{
"editor.tokenColorCustomizations": {
"[Darcula Pycharm with Dark GUI]": { // Targets dark GUI
"textMateRules": [
{
"name": "Foreground base syntax",
"scope": [
"text", // For markup, config, etc.
"source", // For code
],
"settings": {
"foreground": "#FF0000" // Bright red
}
},
]
},
}
}