Skip to content
This repository has been archived by the owner on Aug 26, 2023. It is now read-only.

xshapira/joey-theme

 
 

Repository files navigation

joey

icon

A minimal theme that helps you code with joy and focus.

  • Eye-friendly highlighting
  • Optimized for focus
  • Support for Python syntax

joey-theme-snap

joey-theme-snap-2

joey-theme-snap-2

Font Styles

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": ""
        }
      }
    ]
  },

In preview

The font in preview is MonoLisa.

Other

This theme is a next-level version of shaodahong's fantastic bear theme, now improved and updated to offer even more to your productivity.