Reputation: 75
I am using VSCode with One Dark Pro Theme (here is the link):
I would like to change a color of "Comment Line". Now it's really faded gray color, which makes it hard to read. I would like to have something more greenish - like in classic VIsual Studio green comment color.
I've tried almost everything, but nothing works.
Thank you and best regards Jiri
Upvotes: 0
Views: 4179
Reputation: 67493
In version 1.15 July 2017 you will be able to customize theme's token colors in setting.json
like that:
"editor.tokenColorCustomizations": {
"comments": "#33ff33"
}
Screenshot from insider version (1.15.0)
Upvotes: 3