我知道有一种方法可以自定义特定主题的语法突出显示颜色,例如
"editor.tokenColorCustomizations": {
"[Solarized Light]": {
"functions": "#008080",
"variables":"#008080",
"textMateRules":[
{
"scope": "constant",
"settings": {
"foreground": "#FF0000"
}
}
]
}
}
,但它会影响所有语言。是否可以仅针对特定语言来做到这一点?