1

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.

lance-p
  • 1,050
  • 1
  • 14
  • 28
  • 1
    Actually, I found the file C:\Users\lance-p\.vscode\extensions\gerane.Theme-rainbow-0.0.2\themes\rainbow.tmTheme and changed name Comment scope comment settings foreground #424c55 to #ffffff, and it changed the comment color. Although it's not white, at least its legible now. – lance-p Jun 27 '17 at 01:07
  • 2
    Possible duplicate of [How do I change color of comments in visual studio code?](https://stackoverflow.com/questions/45195023/how-do-i-change-color-of-comments-in-visual-studio-code) – Alex Feb 08 '18 at 11:11

1 Answers1

3

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

"editor.tokenColorCustomizations": {
    "comments": "#fff"
}
Alex
  • 59,571
  • 22
  • 137
  • 126