Skip to content

borekb/darker-plus-theme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Darker+ theme for VSCode

The default Dark+ theme with a darker background.

Default Dark+:

Default Dark+ theme

Darker+:

Darker+ theme

Make it your own!

One of the points of a separate theme is that you can target it in settings.json. For example, for true blacks, you can do this:

{
  "workbench.colorCustomizations": {
    "[Darker+]": {
      "editor.background": "#000000",
      "sideBar.background": "#000000"
    }
  }
}

You can then switch between Dark+ and Darker+ easily.

Darker+, full blacks:

Screenshot 2019-09-13 at 10 27 33

Praise for Dark+

I like Dark+ very much: it not only looks good but also doesn't suffer from many usability issues so common in 3rd party themes, like low contrasts in "edge cases" like diffs, weird colors for selection, etc.

If you wanted to modify Dark+ directly, this would have the same effect as using this theme:

{
  "workbench.colorCustomizations": {
    "[Default Dark+]": {
      "editor.background": "#151515",
      "sideBar.background": "#202020"
    }
  }
}

However, you might find it useful to be able to switch between Dark+ and Darker+, say for day- and night-time coding.