vs code默认主题修改配置

时间:2025-03-01 07:06:49
"editor.tokenColorCustomizations": { "[*Light*]": { "textMateRules": [ { "scope": "ref.matchtext", "settings": { "foreground": "#000" } } ] }, "[*Dark*]": { "textMateRules": [ { "scope": "ref.matchtext", "settings": { "foreground": "#fff" } }, { "scope": "support.function", "settings": { "foreground": "#408080", } }, { "scope": "entity.name.section", //函数参数-调用阶段 "settings": { "foreground": "#187da3", "fontStyle": "" } }, //全局变量的颜色 { "scope": "variable.other.global", //全局变量的颜色 "settings": { "foreground": "#f69930", } }, //函数和类的名称颜色 { "scope": "entity.name.function", //函数和类的名称颜色 "settings": { "foreground": "#dcdc9f", "fontStyle": "bold", //加粗 } } ] }