"VSCODE 색상 변경"에 해당되는 글 - 1건

Post

반응형

    "editor.tokenColorCustomizations": {
        "comments": "#91ffde",
        "strings": "#ff6730",

        "textMateRules": [
            {
              "scope": "punctuation.definition.heading.markdown",
              "settings": {
                "foreground": "#FFA500"
              }
            },
            {
              "scope": "markup.heading.markdown",
              "settings": {
                "foreground": "#FFA500",
                "fontStyle": "bold"
              }
            },
            {
              "scope": "markup.bold",
              "settings": {
                "foreground": "#FF0000",
                "fontStyle": "bold"
              }
            }
          ]
    }

f1 누르고 setting.json 검색. 두개 나오는데 open user setting.json 을 선택한다
java코드일 때 주석과 "다음에 말 색상 변경("comments", "strings")
markdown일 때 ###와 **의 색상변경

또 아래는 배경 색 변경하는 법!

나는 옅은 초록색으로 변경했다!! 대신 주석 색을 진한 초록색으로 변경하고!

   "workbench.colorCustomizations": {

      "editorError.foreground":   "#00000000",
      "editorWarning.foreground": "#00000000",
      "editorInfo.foreground":    "#00000000",

       // vscdoe 전체 전경 색
    "editor.background": "#e8f3f8"
  },
 
 
반응형
▲ top