i wanna ask how to change color of highlight bracket in VSC theme TokyoNight
I wanna change this bracket <>
Add the following new property into your settings.json:
"editor.tokenColorCustomizations": {
"[Tokyo Night]": {
"textMateRules": [
{
"scope": "punctuation.definition.tag",
"settings": {
"foreground": "#468992" // <-- Change the color here
}
}
]
}
}
Save the file and the <> brackets should have a new color of #468992

You may wonder how do I know that punctuation.definition.tag is the corresponding property to the <> brackets. To check that:


