Get the Theme into your Visual Studio Code.
- Open the Extensions sidebar in Visual Studio Code.
- Search for
Theme. - Click Install.
- Click Reload to reload your editor.
- Select Manage Cog (bottom left) β Color Theme β
Theme.
πππππ Rate five stars π
You can customize colors using the workbench.colorCustomizations setting in your settings.json:
"workbench.colorCustomizations": {
"tab.activeBackground": "#282c34",
"activityBar.background": "#282c34",
"sideBar.background": "#282c34"
}Or use editor.tokenColorCustomizations to tweak syntax colors:
"editor.tokenColorCustomizations": {
"[Theme]": {
"textMateRules": [
{
"scope": ["source.python"],
"settings": {
"foreground": "#e06c75"
}
}
]
}
}You can enable italic styling for certain code elements in settings.json:
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"storage.modifier",
"storage.type.php",
"keyword.other.new.php",
"entity.other.attribute-name",
"fenced_code.block.language.markdown",
"keyword",
"storage.type",
"keyword.control",
"constant.language",
"entity.name.method"
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": ["entity.name.type.class"],
"settings": {
"fontStyle": "bold"
}
},
{
"scope": ["entity.name.section.markdown"],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json",
"comment.block",
"entity.other.attribute-name.class.css"
],
"settings": {
"fontStyle": ""
}
}
]
}"editor.fontSize": 16,
"editor.lineHeight": 22,
"editor.fontFamily": "Operator Mono Lig"