Get the best dark theme into your VS Code.
Java Script
HTML
CSS
The most epic dark theme meets Visual Studio Code. You can help by reporting issues here.
Getting started
You can install this theme through the Visual Studio Code Marketplace.
Installation
Launch Quick Open:
Paste the following command and press Enter
:
ext install developer812 theme
And pick the one by developer812 .
GitHub Repository Clone
git clone https://github.com/Soumyafc/developer812-dark-theme.git
Activate theme
Click on the Settings(gear) icon
at the very bottom of the activity bar
and then you choose Color Theme
option , then find out developer812 dark theme
option and click it.
Override theme colors
You can override the developer812 Theme UI and schemes colors by
Launch Quick Open:
Paste settings.json
and press Enter
:
relative section on the VS Code documentation.
Color Scheme override
// Overrides colors
"workbench.colorCustomizations": {
"[developer812 dark theme]": {
"sideBar.background": "#14213d",
}
},
// Overrides editor syntax colors and font style
"editor.tokenColorCustomizations": {
"[developer812 dark theme]": {
"comments": "#229977",
}
},
Recommended settings for a better experience
{
// Controls the font family.
"editor.fontFamily": "Roboto Mono",
// Controls the font size.
"editor.fontSize": 20,
// Controls if file decorations should use badges.
"explorer.decorations.badges": false
}
Other resources