mrred85 / vscode-theme-darcula

Darcula for Visual Studio Code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

IntelliJ Darcula theme for Visual Studio Code

Port of IntelliJ Darcula theme for VS Code.

Syntax

  • HTML
  • XML
  • Apache
  • PHP
  • Python
  • Ruby
  • Java
  • JavaScript
  • TypeScript
  • CSS / SCSS
  • SQL
  • XML
  • Markdown
  • and so on

How to install

Download files and place in ~/.vscode/extensions folder. Go to Preferences > Color Theme and select Darcula to load it.

Indenticator plugin

If you use Indenticator plugin set below values in user settings, settings.json, to activate gutters colors.

"indenticator.color.dark": "#999999",
"indenticator.color.light": "#999999"

TODO Highlight plugin

If you use TODO Highlight set below values in user settings, settings.json to integrate TODO:, @todo: and @TODO: background colors with this theme. This setting remove case sensitive check for a better integration with existing code syntaxes. To color the whole line set todohighlight.highlightWholeLine to true.

"todohighlight.isCaseSensitive": false,
"todohighlight.keywords": [
    {"text": "TODO:", "color": "#FAFAFA", "backgroundColor": "#629755", "overviewRulerColor": "#629755"},
    {"text": "FIXME:", "color": "#FAFAFA", "backgroundColor": "#CC7832", "overviewRulerColor": "#CC7832"},
    {"text": "NOTE:", "color": "#FAFAFA", "backgroundColor": "#6897BB", "overviewRulerColor": "#6897BB"},
    {"text": "BUG:", "color": "#FAFAFA", "backgroundColor": "#B64213", "overviewRulerColor": "#B64213"},
    {"text": "IMPORTANT:", "color": "#FAFAFA", "backgroundColor": "#CC78D1", "overviewRulerColor": "#CC78D1"}
]

Git Lens plugin

If you use Git Lens set below values in user settings, settings.json to integrate with this theme.

"gitlens.insiders": true,
"workbench.colorCustomizations": {
    "gitlens.gutterBackgroundColor": "#3A3A3A70",
    "gitlens.gutterForegroundColor": "#8C8C8C",
    "gitlens.gutterUncommittedForegroundColor": "#629755",
    "gitlens.lineHighlightBackgroundColor": "#38557075",
    "gitlens.lineHighlightOverviewRulerColor": "#38557075",
    "gitlens.trailingLineForegroundColor": "#606366"
}

Enjoy ;)