Home > Software engineering >  How I can edit theme in vscode?
How I can edit theme in vscode?

Time:07-12

I want to make text on picture a little less bold and italic. How to do it?

enter image description here

CodePudding user response:

You can delete the following content in your setting.json:

  "editor.tokenColorCustomizations": {
    "variables": {
      // You can choose bold , italic or underline. If deleted, it will be the default.
      "fontStyle": "bold",
    },
    "functions": {
      // You can choose bold , italic or underline. If deleted, it will be the default.
      "fontStyle": "bold",
    },
  • Related