/1am-vscode

A dark vscode color theme

MIT LicenseMIT

1am Color Theme

A dark theme for VS Code based on the Dracula Refined Theme theme


Visual Studio Marketplace Open VSX


Screenshot

Recomended VSCode Settings

To get the best experience with this theme, I recommend using the Victor Mono font

To enable italics in the VSCode editor, add the following to your Settings.json:

{
  "editor.fontFamily": "Victor Mono",
  "editor.tokenColorCustomizations": {
    "textMateRules": [
      {
        "scope": [
          //following will be in italic (=FlottFlott)
          "comment"
        ],
        "settings": {
          "fontStyle": "italic"
        }
      },
      {
        "scope": [
          //following will be excluded from italics (VSCode has some defaults for italics)
          "invalid",
          "keyword.operator",
          "constant.numeric.css",
          "keyword.other.unit.px.css",
          "constant.numeric.decimal.js",
          "constant.numeric.json"
        ],
        "settings": {
          "fontStyle": ""
        }
      }
    ]
  }
}