how to make your comment in vsc text color appear white code example

Example 1: vscode change comments color

"editor.tokenColorCustomizations": {
    "comments": "#d4922f"
},

Example 2: visual studio code different colored comments

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 ?)

*/