lance-p
lance-p

Reputation: 1070

Customize theme comments color

I'm using the "rainbow" theme extension. I like colors except for comments, they are too dark to read. I want to change just the comments color. Do I have to go through this (generate a Yo Code theme from the existing rainbow theme):

How to edit default dark theme for Visual Studio Code?

just to make this change? Thanks.

Upvotes: 1

Views: 3604

Answers (1)

Alex
Alex

Reputation: 67561

Starting with version 1.15 (July 2017) you can do this in settings.json Ctrl+,:

"editor.tokenColorCustomizations": {
    "comments": "#fff"
}

Upvotes: 3

Related Questions