1am Color Theme
Recomended VSCode Settings
To get the best experience with this theme, I recommend using the Victor Mono font
To enable italics in the VSCode editor, add the following to your Settings.json :
{
"editor.fontFamily": "Victor Mono",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
//following will be in italic (=FlottFlott)
"comment"
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
//following will be excluded from italics (VSCode has some defaults for italics)
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json"
],
"settings": {
"fontStyle": ""
}
}
]
}
}
| |