我使用的是VSCode 1.56.1版,我想将我的console.log()颜色改为:

要这样做:

有没有办法可以只改变这个变量而不改变其他变量的颜色?
发布于 2021-05-15 17:56:25
我找到了如何在控制台上做到这一点。如果您想自己执行此操作,请在settings.json文件中键入:
"editor.tokenColorCustomizations": {
"[Default Dark+]": { // You can enter your own theme here as well
"textMateRules": [
{
"scope": "support.variable",
"settings": {
"foreground": "#4EC9B0",
}
}
]
}
}https://stackoverflow.com/questions/67515138
复制相似问题