Reputation: 323
I am using VSCode version 1.56.1 and I'd like to change my console.log()
color from this:
Is there any way I can change only this instead of changing the colour of other variables?
Upvotes: 1
Views: 822
Reputation: 323
I found how to do this to console. If you want to do it yourself, in your settings.json file type:
"editor.tokenColorCustomizations": {
"[Default Dark+]": { // You can enter your own theme here as well
"textMateRules": [
{
"scope": "support.variable",
"settings": {
"foreground": "#4EC9B0",
}
}
]
}
}
Upvotes: 2