Closed usernamehw closed 6 years ago
There is a known bug which affects at least javascript & typescript: Items without selector inherit string color:
javascript
typescript
[1,2,3].title; `${[1,2,3].title}`
There is 1 easy fix though: add to "tokenColors":
"tokenColors"
{ "scope": "meta.template.expression", "settings": { "foreground": "#aec2e0" } }
It was example for the legacy theme. This color should be the same as "editor.foreground" of the same theme.
legacy
"editor.foreground"
If you want I can create a PR to fix this.
Thanks again mate! I'll tackle this one tonight. Shouldn't be a problem. :)
Have fixed this in 1.0.3, thanks once again! :)
1.0.3
There is a known bug which affects at least
javascript
&typescript
: Items without selector inherit string color:There is 1 easy fix though: add to
"tokenColors"
:It was example for the
legacy
theme. This color should be the same as"editor.foreground"
of the same theme.If you want I can create a PR to fix this.