Home > Enterprise >  How to change font weight for keywords in VSCode?
How to change font weight for keywords in VSCode?

Time:10-18

It seems keywords are always "bold" in my VS Code and I can't change it, see in the image below the keywords like "class", "extends" etc

enter image description here

I tried to override the fontStyle for the theme but no luck:

"editor.tokenColorCustomizations": {
    "[Darcula Theme from IntelliJ]": {
        "keywords": {
            "fontStyle": ""
        }
    },
},

I also have "editor.fontWeight": "normal" but it still doesn't affect the keywords...

Any idea how to solve this? Thx.

CodePudding user response:

The theme is defined at enter image description here

Code from https://www.rosettacode.org/wiki/Greatest_element_of_a_list#Java

  • Related