Published at
Updated at
Reading time
3min

I'm on a VS Code improvement trip lately (read more about semantic syntax code highlighting here) and continued it by tweaking my coding theme.

Do you know these beautiful coding themes with fancy-looking cursive fonts? ๐Ÿ‘‡

Code editor with fancy italics

I was always jealous of people using them, and today I spent some time figuring out how that works.

A font with cursive characters and a theme using italics

You need two things to enable a cursive font in your editor:

  1. a coding theme that leverages italics for particular tokens (not many do)
  2. a font that is primarily monospaced but includes cursive characters for italics

My VS Code setup consists of the Yi light/dark coding theme and the FiraCode editor font. And, unfortunately, Yi doesn't use italics and FireCode doesn't include cursive characters.

Luckily, I found the FiraCode iScript font. It's a mix of FiraCode (monospace) and Script12 (cursive), so that I didn't need to change my primary coding font (yay!).

If you use a coding theme that leverages italics already, FireCode iScript (and other fonts) should work out of the box, and your job is done after installing it. (I heard good things about the Pop'n'Lock theme)

I have no interest in changing the theme, though, so I had to continue my journey to find out how to make the coding theme use italics.

Define italics when your theme doesn't use them

After "stack overflowing" for a while, I learned that you can overwrite your theme configuration by adding textMateRules to your settings.json.

{
  "editor.tokenColorCustomizations": {
    "textMateRules": [
      {
        "scope": [
          "comment",
          "keyword",
          "storage.modifier",
          "storage.type.class.js",
          "storage.type.js"
        ],
        "settings": {
          "fontStyle": "italic bold"
        }
      },
      {
        "scope": [
          "keyword.control.conditional",
          "keyword.operator"
        ],
        "settings": {
          "fontStyle": ""
        }
      }
    ]
  },
}

Enable and disable italic font styles (settings.fontStyle) for particular source code tokens (scope) with a few lines of JSON; it's beautiful! But how can you know the scope of a specific source code token (let, this, import and so on)?

Inspect VS Code tokens and scope

It's almost too easy to access the syntax and theming information in VS Code!

VS Code command pallet with the "Developer: Inspect Editor Tokens and Scopes" command

Open the command palette (CMD + Shift + p) and find the "Inspect editor Tokens and Scopes" command. Navigate around your code and find the particular scopes to adjust them in your settings.json.

VS Code modal showing the scopes of a particular code token

I've never created a coding theme, but maybe I should! This flow seems so effortless! ๐Ÿ˜ฒ Hit one command and start defining custom styles for any part of your source code. Magic!

After playing around with it for a while, I discovered that too many cursive styles distract me and only went with a few cursive tokens. ๐Ÿ‘‡

I enjoy the new style a lot!

Check out my weekly newsletter, if you like these tips. And if you know great italic coding fonts, shoot them my way, too! Talk soon! ๐Ÿ‘‹

Was this post helpful?
Yes? Cool! You might want to check out Web Weekly for more web development articles. The last edition went out 14 days ago.
Stefan standing in the park in front of a green background

About Stefan Judis

Frontend nerd with over ten years of experience, freelance dev, "Today I Learned" blogger, conference speaker, and Open Source maintainer.

Related Topics

Related Articles