自定义当前 Visual Studio 代码主题
Customize current Visual Studio Code theme
我正在更改当前主题(Atom 主题),以便所有语言或至少 python 和 javascript 的字符串以特定颜色显示。
在settings.json中,我添加了以下内容,但似乎没有反映出来。
"editor.semanticTokenColorCustomizations": {
"[Atom One Light]": {
"enabled": true,
"rules": {
"string": { "color": "#FFFFFF" }
}
}
}
在 settings.json
中尝试以下操作:
"editor.tokenColorCustomizations": {
"[Atom One Light]": { "strings": "#FF0000"},
}
我正在更改当前主题(Atom 主题),以便所有语言或至少 python 和 javascript 的字符串以特定颜色显示。
在settings.json中,我添加了以下内容,但似乎没有反映出来。
"editor.semanticTokenColorCustomizations": {
"[Atom One Light]": {
"enabled": true,
"rules": {
"string": { "color": "#FFFFFF" }
}
}
}
在 settings.json
中尝试以下操作:
"editor.tokenColorCustomizations": {
"[Atom One Light]": { "strings": "#FF0000"},
}