Black Beauty Theme for VS Code
The dark theme is the programmer's canvas, where every line of code is a stroke of brilliance, creating a masterpiece of technology.
Special mention
Mr. Aadarsh Kushwaha
Catch Me
Installation
To enable the gradients in active tabs you need to follow the next steps:
- Install this theme
- Install vs code extension Bearded Icons
- Download Custom CSS and JS Loader
- on vs code open up the user settings cmd + p then search for user settings and copy the settings on the settings.json file from this repo ( if you
want it exactly like mines paste it at the bottom if you don't want to override your own settings then paste it at the top of file)
{
"vscode_custom_css.imports": [
"file://C:/Users/Mandip Shah/.vscode-insiders/extensions/mandy.black-beauty-0.0.3/synthWaveStyles.css",
],
"editor.fontLigatures": true,
"editor.fontSize": 12,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 600,
"editor.fontFamily": "\"Fira Code\",\"mononoki Nerd Font\", Menlo, Monaco, 'Courier New', monospace",
"editor.cursorSmoothCaretAnimation": "on",
"editor.cursorBlinking": "expand",
"terminal.external.linuxExec": "iterm",
"terminal.integrated.fontSize": 14,
"workbench.iconTheme": "bearded-icons",
"editor.wordWrap": "on",
}
OR,
- Add this code depending your operative system, and add your user or file location in your VS Code
settings.json
.
On Mac:
{
"vscode_custom_css.imports": [
"file:///Users/{your username}/.vscode/extensions/mandy.black-beauty-0.0.3/synthWaveStyles.css"
]
}
Windows:
{
"vscode_custom_css.imports": [
"file:///C:/Users/{your username}/.vscode/extensions/mandy.black-beauty-0.0.3/synthWaveStyles.css"
]
}
Linux:
{
"vscode_custom_css.imports": [
"file:///home/{your username}/.vscode/extensions/mandy.black-beauty-0.0.3/synthWaveStyles.css"
]
}