zhjrcc
zhjrcc

Reputation: 23

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

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

I want a regular font style instead of italic. 1

Upvotes: 0

Views: 647

Answers (1)

zhjrcc
zhjrcc

Reputation: 23

Add to the setting.json:

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

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

Upvotes: 2

Related Questions