VSCode에서 터미널 스타일을 쉽게 변경하는 방법

VSCode에서 터미널 스타일을 쉽게 변경하는 방법

2022-10-04 last update

5 minutes reading style vscode terminal
방금 통합 터미널의 모양을 변경해야 했고 이것이 얼마나 쉬운지 알아냈습니다.

그래서…. 여기 당신은 그것을하기 위해 행복한 산책을합니다 🙂
  • 설정으로 이동합니다(VSCode에서 분명히).
  • Windows/Linux - 파일 > 기본 설정 > 설정
  • macOS - 코드 > 기본 설정 > 설정
  • 바로가기(⌘,)
  • 검색(⇧⌘P) → "환경설정: 설정 열기"


  • "workbench: color customizations"를 검색하고 settings.json 파일을 엽니다
  • .
  • workbench.colorCustomizations에서 구성을 편집하거나 붙여넣습니다.

  • https://code.visualstudio.com/api/references/theme-color


  •     "workbench.colorCustomizations": {
          "terminal.background":"#1D2021",
          "terminal.foreground":"#A89984",
          "terminalCursor.background":"#A89984",
          "terminalCursor.foreground":"#A89984",
          "terminal.ansiBlack":"#1D2021",
          "terminal.ansiBlue":"#0D6678",
          "terminal.ansiBrightBlack":"#665C54",
          "terminal.ansiBrightBlue":"#0D6678",
          "terminal.ansiBrightCyan":"#8BA59B",
          "terminal.ansiBrightGreen":"#95C085",
          "terminal.ansiBrightMagenta":"#8F4673",
          "terminal.ansiBrightRed":"#FB543F",
          "terminal.ansiBrightWhite":"#FDF4C1",
          "terminal.ansiBrightYellow":"#FAC03B",
          "terminal.ansiCyan":"#8BA59B",
          "terminal.ansiGreen":"#95C085",
          "terminal.ansiMagenta":"#8F4673",
          "terminal.ansiRed":"#FB543F",
          "terminal.ansiWhite":"#A89984",
          "terminal.ansiYellow":"#FAC03B"
        }
    

    약간의 변경 후 VS Code에서 통합 터미널을 확인할 수 있습니다.


    다음에서 미리 정의된 여러 템플릿을 찾을 수 있습니다.
    https://glitchbone.github.io/vscode-base16-term/#/

    https://code.visualstudio.com/docs/getstarted/settings

    https://code.visualstudio.com/api/references/theme-color

    https://glitchbone.github.io/vscode-base16-term/#/