/vscode-theme-one

One Dark and Light for Visual Studio Code

One Dark and One Light themes for Visual Studio Code

Port of One Dark and One Light themes for VS Code.

Syntax

  • HTML
  • 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 One Dark or One Light to load it.

Indenticator plugin

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

"indenticator.color.dark": "#9399be",
"indenticator.color.light": "#696c77"

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.

One Dark

"todohighlight.isCaseSensitive": false,
"todohighlight.keywords": [
    {"text": "TODO:", "color": "#fafafa", "backgroundColor": "#50a14f", "overviewRulerColor": "#50a14f"},
    {"text": "FIXME:", "color": "#fafafa", "backgroundColor": "#d19a66", "overviewRulerColor": "#d19a66"},
    {"text": "NOTE:", "color": "#fafafa", "backgroundColor": "#61afef", "overviewRulerColor": "#61afef"},
    {"text": "BUG:", "color": "#fafafa", "backgroundColor": "#df6a73", "overviewRulerColor": "#df6a73"},
    {"text": "IMPORTANT:", "color": "#fafafa", "backgroundColor": "#c678dd", "overviewRulerColor": "#c678dd"}
]

One Light

"todohighlight.isCaseSensitive": false,
"todohighlight.keywords": [
    {"text": "TODO:", "color": "#fafafa", "backgroundColor": "#50a14f", "overviewRulerColor": "#50a14f"},
    {"text": "FIXME:", "color": "#fafafa", "backgroundColor": "#986801", "overviewRulerColor": "#986801"},
    {"text": "NOTE:", "color": "#fafafa", "backgroundColor": "#0184bc", "overviewRulerColor": "#0184bc"},
    {"text": "BUG:", "color": "#fafafa", "backgroundColor": "#e06c75", "overviewRulerColor": "#e06c75"},
    {"text": "IMPORTANT:", "color": "#fafafa", "backgroundColor": "#a626a4", "overviewRulerColor": "#a626a4"}
]

Git Lens plugin

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

One Dark

"gitlens.insiders": true,
"workbench.colorCustomizations": {
    "gitlens.gutterBackgroundColor": "#363a4f99",
    "gitlens.gutterForegroundColor": "#d6e4fe",
    "gitlens.gutterUncommittedForegroundColor": "#d19a66",
    "gitlens.lineHighlightBackgroundColor": "#61afef4d",
    "gitlens.lineHighlightOverviewRulerColor": "#61afef4d",
    "gitlens.trailingLineForegroundColor": "#d19a66"
}

One Light

"gitlens.insiders": true,
"workbench.colorCustomizations": {
    "gitlens.gutterBackgroundColor": "#d2d3d499",
    "gitlens.gutterForegroundColor": "#383a42",
    "gitlens.gutterUncommittedForegroundColor": "#986801",
    "gitlens.lineHighlightBackgroundColor": "#4078f266",
    "gitlens.lineHighlightOverviewRulerColor": "#4078f266",
    "gitlens.trailingLineForegroundColor": "#986801"
}

Enjoy ;)