Your Useless Info

[VS Code] 주석 색깔 변경 / How to change a colour of comments in visual studio code

한이든 2020. 7. 30. 10:50

1. File --> Preferences --> Settings

 

2. Choose the "Workspace Settings" tab to only change it for this project

 

3. Choose the "User Settings" tab to change it for all projects

 

4. Do a search for "settings.json" and look for an option to "Edit in settings.json"

 

5. Insert this color setting for the comments somewhere inside the curly brackets:

"editor.tokenColorCustomizations": { 
"comments": "#229977" 
}

Done.