Reputation: 13
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.
The link I got : https://code.visualstudio.com/api/references/theme-color
Upvotes: 0
Views: 2078
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.
Property to be used:-
"workbench.colorCustomizations": {
"[Your Theme]": {
"dart.closingLabels": "#335566"
}
}
Upvotes: 1