I am using Visual Studio Code for coding Dart with Flutter. I installed Dart and Flutter plugins as well as the Material theme from Matta Astorino. The problem is I can\'t s
I don't use Dart, but i can say that, sometimes you have to be more specific with setting syntax scope colors.
First of all - you need to know what the scope is. To do this, please run Inspect TM Scopes.
Here you have described how to do it:
To understand better, it is good to read:
Sublime Text have a good explanation too:
Ok, and now:
When you find out what the scope is, then you have to create or overwrite it. Example:
"editor.tokenColorCustomizations": {
"[My Theme Name]": {
"textMateRules": [
{
"name": "Entity",
"scope": "entity.name",
"settings": {
"foreground": "#FFC66D"
}
},
]
}
},
If you will create more and more new scopes, remember that: