vscode 怎么修改三个双引号围起来的段落注释的颜色
时间: 2024-02-13 14:04:04 浏览: 172
vscode默认黑色主题标签颜色修改
5星 · 资源好评率100%
您可以通过在 VS Code 的设置中添加以下代码来修改三个双引号围起来的段落注释的颜色:
```json
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "punctuation.definition.comment.begin",
"settings": {
"foreground": "#6A9955"
}
},
{
"scope": "punctuation.definition.comment.end",
"settings": {
"foreground": "#6A9955"
}
},
{
"scope": "punctuation.definition.comment",
"settings": {
"foreground": "#6A9955"
}
}
]
}
```
您可以将 `foreground` 的值修改为您想要的颜色。将上述代码添加到您的 `settings.json` 文件中即可生效。
阅读全文