原本效果:
修改之后:
步骤:vscode设置 —— 搜索:Workbench: Color Customizations —— 点击"在settings.json中编辑" —— 重启vscode
添加下方代码
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "entity.name.tag.custom",
"settings": {
"foreground": "#FF2980"
}
}
]
}