VS Code 기본 색상 변경 방법

서언·2025년 4월 19일

🤖 Setup

목록 보기
7/7
post-thumbnail

💗 VS Code 색상 변경

주석 색상 바꾸기
"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" // 원하는 색상으로 변경
            }
        }
    ]
    }
profile
웅 나 캡쪼랭이 맞아요✨

0개의 댓글