Windows 터미널의 색 구성표Color schemes in Windows Terminal
고유한 색 구성표 만들기Creating your own color scheme
색 구성표는 settings.json 파일의 schemes
배열에 정의할 수 있습니다.Color schemes can be defined in the schemes
array of your settings.json file. 색 구성표는 다음과 같은 형식으로 작성됩니다.They are written in the following format:
{
"name" : "Campbell",
"cursorColor": "#FFFFFF",
"selectionBackground": "#FFFFFF",
"background" : "#0C0C0C",
"foreground" : "#CCCCCC",
"black" : "#0C0C0C",
"blue" : "#0037DA",
"cyan" : "#3A96DD",
"green" : "#13A10E",
"purple" : "#881798",
"red" : "#C50F1F",
"white" : "#CCCCCC",
"yellow" : "#C19C00",
"brightBlack" : "#767676",
"brightBlue" : "#3B78FF",
"brightCyan" : "#61D6D6",
"brightGreen" : "#16C60C",
"brightPurple" : "#B4009E",
"brightRed" : "#E74856",
"brightWhite" : "#F2F2F2",
"brightYellow" : "#F9F1A5"
},
name
외의 모든 설정에서 16진수 형식의 문자열("#rgb"
또는 "#rrggbb"
)로 색을 허용합니다.Every setting, aside from name
, accepts a color as a string in hex format: "#rgb"
or "#rrggbb"
. cursorColor
및 selectionBackground
설정은 선택 사항입니다.The cursorColor
and selectionBackground
settings are optional.
포함된 색 구성표Included color schemes
Windows 터미널에는 alt를 누르고 설정 단추를 선택하여 액세스할 수 있는 defaults.json 파일 내에 이러한 색 구성표가 포함되어 있습니다.Windows Terminal includes these color schemes inside the defaults.json file, which can be accessed by holding alt and selecting the settings button. 명령줄 프로필 중 하나에서 색 구성표를 설정하려면 색 구성표의 name
을 값으로 사용하여 colorScheme
속성을 추가합니다.If you would like to set up a color scheme inside one of your command-line profiles, add the colorScheme
property with the color scheme's name
as the value.
"colorScheme": "COLOR SCHEME NAME"