ani
ani

Reputation: 323

VSCode Change Color of console.log()

I am using VSCode version 1.56.1 and I'd like to change my console.log() color from this:enter image description here

to this: enter image description here

Is there any way I can change only this instead of changing the colour of other variables?

Upvotes: 1

Views: 822

Answers (1)

ani
ani

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

Related Questions