vs code change color of comments code example

Example 1: vscode change comments color

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

Example 2: How to change color VSCode

Install Material Theme by Mattia Astorino>  use "Set Color Theme"

Example 3: 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 ?)

*/

Example 4: visual studio code add white theme

Selecting the Color Theme#
Open the Color Theme picker with File > Preferences > Color Theme. (Code > Preferences > Color Theme on macOS).
You can also use the keyboard shortcut Ctrl+K Ctrl+T to display the picker.
Use the cursor keys to preview the colors of the theme.
Select the theme you want and press Enter.