surfinzap / bikkuri-theme-vscode

Set of dark themes for VS Code, including syntax highlighting, debugging, diff/merge and terminal colors.
MIT License
5 stars 1 forks source link

[Feature request] Italic font support for built-in keywords #27

Open RVFET opened 1 month ago

RVFET commented 1 month ago

Some themes have ability to make built-in keywords for different languages appear in italic. I wonder if it's possible to have it in Bikkuri. This is my favorite theme by far and I've been using this theme for god knows how long. It'd be great to have italicized keywords in editor since it'd greatly improve the ability to reading the code faster (basically kinda like bionic reading for developers).

surfinzap commented 1 month ago

Hi @RVFET, Thanks for the suggestion! Please share a couple of screenshots (or more info) on which keywords you prefer italicized in what languages.

RVFET commented 3 weeks ago

Hey Brano. Sorry for very late response. Here are some of those themes (the keywords are italicized):

Also, I found out that there's a native vscode feature for that, I just edited my user.json config to the following:

"editor.tokenColorCustomizations": {
    "[*Dark*]": {
      "textMateRules": [
        {
          "scope": ["keyword"],
          "settings": {
            "fontStyle": "italic"
          }
        }
      ]
    }
  }