I went through https://code.visualstudio.com/docs/getstarted/theme-color-reference but can\'t seem to find the setting for changing the comment color.
I am currentl
Like Mark said, but add in the "scope": after "comment"
"scope":
"comment"
"punctuation.definition.comment"
to color also the punctuation,
e.g. (// in javescript | /* */ in css | in html).
//
/* */
"scope": ["comment", "punctuation.definition.comment"]