In VS Code, how can I set the color for the curly bracket characters {
and }
in .ts
files?
In my settings.json
, I currently have this as a starting point:
"editor.tokenColorCustomizations": {
"textMateRules": [{
"scope": "entity.name.class, entity.name.type",
"settings": {
"foreground": "#cc0000",
"fontStyle": "italic",
}
}],
}