Home > Enterprise >  How to change the font-style of code comments in vscode?
How to change the font-style of code comments in vscode?

Time:01-10

I don't want italic.How to change it?

I want a regular font style instead of italic. 1

CodePudding user response:

Add to the setting.json:

  "editor.tokenColorCustomizations": {
    "comments": {
      "fontStyle": "",
      "foreground": "#d400ff"
    }
  }

enter image description here You can change the font style and color.

  • Related