- 🌙 Dark (000) and vibrant theme
For for Monokai Vibrant
- What is different
- Complete dark mode. Background color is #000
- Higher contrast on what tab is being used
- Higher contrast when a tab is not saved.
Install
- Open the Extensions sidebar in VS Code.
- Search for
Monokai [#000](https://github.com/KevinDLopez/monokai-000/issues/000) .
- Click the Install button
- Go to Preferences ‣ Color Theme ‣ Monokai Vibrant
Disable Italics
If you are not using a font that does not support italics, you can add this to your settings.json to disabled them.
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "Monokai Vibrant - No Italics",
"scope": [
"comment",
"string.comment",
"variable.language",
"keyword",
"storage",
"variable.parameter"
],
"settings": {
"fontStyle": ""
}
}
]
}
| |