ameen
ameen

Reputation: 13

VS Code theme editing for flutter

When we code for flutter apps VS code shows the widget name after the parenthesis ( The red marked text in the image). Now it's color is grey and is irritating to my eyes. I want to reduce the opacity of the specified texts. But I don' know how to do that. I got a link on how to edit the color theme,but I couldn't find the proper way to do that. enter image description here

The link I got : https://code.visualstudio.com/api/references/theme-color

Upvotes: 0

Views: 2078

Answers (1)

Shikhar Singh
Shikhar Singh

Reputation: 112

User key shortcut (Ctrl + ,) then on Top-Right Corner there is File icon click on that to open settings.json file. There you can edit the color codes using it's property.

File looks like this-> Image

Property to be used:-

"workbench.colorCustomizations": {
    "[Your Theme]": {
      "dart.closingLabels": "#335566"
    }
  }

Upvotes: 1

Related Questions