xxxxxxxxxx
in setting.json (ctrl+,) add:
"editor.tokenColorCustomizations": {
"[Atom One Dark]": {
"comments": "#d4922f"
}
},
xxxxxxxxxx
VSC coloring Comments:
/*
// crossed out text
? blue text
* green text
! red text
if you want to use !, * or ? without changeing colors, you have to:
?// no colored text
(you can use * and ! instead of ?)
if you want to use crossed out colored text, use:
//? crossed out colored text
(you can use * and ! instead of ?)
*/
xxxxxxxxxx
> "editor.tokenColorCustomizations": {
> "comments": "#e45e91" },