A minimal theme to code with joy and focus.
- Eye-friendly highlighting
- Optimized for focus
- Support for Python syntax
This theme generally avoids applying italic and bold styling by default, giving users the freedom to personalize their look. But, for better experience, the theme does apply italic and bold styling to emphasize certain Python keywords.
If you wish to use the other italic/bold stylings for greater readability, add the following to your settings.json
:
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "italics & bold",
"scope": [
//following will be in italic bold
"keyword", //import, export, return…
"keyword.control.flow",
"storage.modifier", //static keyword
"storage.type"
],
"settings": {
"fontStyle": "italic bold"
}
},
{
"name": "No italics",
"scope": ["comment", "keyword.operator", "keyword.key"],
"settings": {
"fontStyle": ""
}
}
]
},
The font in preview is MonoLisa.
This theme is a next-level version of shaodahong's fantastic bear theme, now improved and updated to offer even more to your productivity.