I am trying to customize the color of HTML tags in react (.tsx files). So, I included the code below in settings.json file.
"editor.tokenColorCustomizations": {
"textMateRules": [
// TextMate grammars tokenization settings
{
"name": "JSX tags",
"scope": [
"entity.name.tag", // HTML tags (in JSX)
"entity.name.tag.html", // JSX Component tags
"meta.tag",
"meta.jsx"
],
"settings": {
"foreground": "#18da32"
}
}
]
},
However, even after the settings is applied, the color does not change (the color should be like so
)
What is being displayed
However, when I use the developer tools it shows the right Hex code!

The other tag is displayed correctly (the dark orange color)

Is this some kind of bug or am i doing something wrong? I even closed VS code & started again but no use.
