
주석 색상 바꾸기
"scope": "comment"
연산자 색상 바꾸기
"scope": "keyword.operator"
💡 Show and Run Command : Command (⌘) + Shift (⇧) + P
Library > Application Support > Code > User > settings.json
"editor.tokenColorCustomizations": { // 기본 색상 바꾸기
"textMateRules": [
{
"scope": "comment", // 주석 색상 바꾸기
"settings": {
"foreground": "#A9A9A9" // 원하는 색상만 지정
}
},
{
"scope": "keyword.operator", // 연산자 색상 바꾸기
"settings": {
"foreground": "#FFFFFF" // 원하는 색상으로 변경
}
}
]
}