/vscode-darcula-pycharm-theme

:vs: VS Code port of PyCharm's Darcula syntax theme w/ :high_brightness:Light & :stars:Dark GUI options, :tophat:MagicPython support, Jinja & Django template support, and overridable base highlight

Darcula PyCharm Theme for VS Code

Visual Studio Marketplace Downloads GitHub Repo stars

PyCharm's Darcula syntax theme ported with care to VS Code

Light GUI Dark GUI

Template Support

Use one of these plugins:

Syntax Customization

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