본문으로 바로가기
검색
회원가입로그인

vscode 에서 터미널 배경이 회색으로 나오는 것을 흰색으로 바꾸려면

  1. settings.json 직접 편집

    • Ctrl+Shift+P → "Preferences: Open User Settings (JSON)" 입력

    • 다음 코드 추가:

    json

    "workbench.colorCustomizations": {
        "terminal.background": "#FFFFFF",
        "terminal.foreground": "#000000",
        "panel.background": "#FFFFFF"
    }
  2. 현재 테마 유지하면서 터미널만 변경

    • settings.json에 추가:

    json

    "workbench.colorCustomizations": {
        "[현재테마이름]": {
            "terminal.background": "#FFFFFF",
            "terminal.foreground": "#000000"
        }
    }
  3. 터미널 통합 설정

    json

    "terminal.integrated.minimumContrastRatio": 1,
    "terminal.integrated.gpuAcceleration": "off"
  4. PowerShell 자체 색상 설정

    • 터미널에서 실행:

    powershell

    [Console]::BackgroundColor = 'White'
    [Console]::ForegroundColor = 'Black'
    Clear-Host

settings.json 저장 후 VS Code를 재시작하면 적용됩니다.