Skip to content

Instantly share code, notes, and snippets.

@13xforever
Last active June 21, 2023 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 13xforever/f4515edf207860637f1198712641b52d to your computer and use it in GitHub Desktop.
Save 13xforever/f4515edf207860637f1198712641b52d to your computer and use it in GitHub Desktop.
Windows Terminal example configuration with light/dark theme, custom color schemes, custom themes, and custom new tab menu, along with Oh-My-Posh configuration example with custom theme
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
// left side of the first line of the prompt
"blocks": [
{
"alignment": "left",
"segments": [
{
// shell type
"background": "lightBlue",
"foreground": "#ffffff",
"leading_diamond": "\u256d\u2500\ue0b6",
"style": "diamond",
"template": " {{ .Name }} ",
"type": "shell"
},
{
// admin/root indicator
"background": "red",
"foreground": "lightYellow",
"properties": {
"root_icon": "\uf292"
},
"style": "diamond",
"template": "<parentBackground>\ue0b0</> \uf0e7 ",
"type": "root"
},
{
// current path
"background": "black",
"foreground": "lightWhite",
"powerline_symbol": "\ue0b0",
"properties": {
"style": "full"
},
"style": "powerline",
"template": " {{ .Path }} ",
"type": "path"
},
{
// git status
"background": "yellow",
"background_templates": [
"{{ if or (.Working.Changed) (.Staging.Changed) }}lightYellow{{ end }}",
"{{ if and (gt .Ahead 0) (gt .Behind 0) }}green{{ end }}",
"{{ if gt .Ahead 0 }}magenta{{ end }}",
"{{ if gt .Behind 0 }}magenta{{ end }}"
],
"foreground": "black",
"powerline_symbol": "\ue0b0",
"properties": {
"branch_icon": "\ue725 ",
"fetch_status": true,
"fetch_upstream_icon": true
},
"style": "powerline",
// staged lines
"template": " {{ .HEAD }} {{ if .Working.Changed }}{{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }}<red> \uf046 {{ .Staging.String }}</>{{ end }} ",
"type": "git"
}
],
"type": "prompt"
},
{
// right half of the first line
"alignment": "right",
"segments": [
{
// command exit code
"background": "green",
"background_templates": [
"{{ if gt .Code 0 }}red{{ end }}"
],
"foreground": "#ffffff",
"leading_diamond": "\ue0b6",
"properties": {
"always_enabled": true
},
"style": "diamond",
"template": " {{ if gt .Code 0 }}{{ .Code | printf \"%#08x\" }}{{ else }}\uf42e {{ end }} ",
"type": "exit"
},
{
// execution time
"background": "magenta",
"foreground": "#ffffff",
"powerline_symbol": "\ue0c4 ",
"properties": {
"threshold": 0
},
"style": "powerline",
"template": "\udb86\udd9f {{ .FormattedMs }} ",
"type": "executiontime"
},
{
// timestamp
"background": "blue",
"foreground": "#ffffff",
"properties": {
"time_format": "15:04"
},
"style": "diamond",
"templates": [
"{{ $hour := .CurrentDate | dateModify \"+10m\" | date \"15\" }}{{ if eq $hour \"00\" }}\udb85\udc56{{end}}{{ if eq $hour \"01\" }}\udb85\udc4b{{end}}{{ if eq $hour \"02\" }}\udb85\udc4c{{end}}{{ if eq $hour \"03\" }}\udb85\udc4d{{end}}{{ if eq $hour \"04\" }}\udb85\udc4e{{end}}{{ if eq $hour \"05\" }}\udb85\udc4f{{end}}{{ if eq $hour \"06\" }}\udb85\udc50{{end}}{{ if eq $hour \"07\" }}\udb85\udc51{{end}}{{ if eq $hour \"08\" }}\udb85\udc52{{end}}{{ if eq $hour \"09\" }}\udb85\udc53{{end}}{{ if eq $hour \"10\" }}\udb85\udc54{{end}}{{ if eq $hour \"11\" }}\udb85\udc55{{end}}{{ if eq $hour \"12\" }}\udb85\udc56{{end}}{{ if eq $hour \"13\" }}\udb85\udc4b{{end}}{{ if eq $hour \"14\" }}\udb85\udc4c{{end}}{{ if eq $hour \"15\" }}\udb85\udc4d{{end}}{{ if eq $hour \"16\" }}\udb85\udc4e{{end}}{{ if eq $hour \"17\" }}\udb85\udc4f{{end}}{{ if eq $hour \"18\" }}\udb85\udc50{{end}}{{ if eq $hour \"19\" }}\udb85\udc51{{end}}{{ if eq $hour \"20\" }}\udb85\udc52{{end}}{{ if eq $hour \"21\" }}\udb85\udc53{{end}}{{ if eq $hour \"22\" }}\udb85\udc54{{end}}{{ if eq $hour \"23\" }}\udb85\udc55{{end}}{{ if eq $hour \"24\" }}\udb85\udc56{{end}} {{ .CurrentDate | date .Format }} ",
"\udb80\udd50 {{ .CurrentDate | date .Format }} "
],
"templates_logic": "first_match",
"trailing_diamond": "\ue0b4",
"type": "time"
}
],
"type": "prompt"
},
{
//second line
"alignment": "left",
"newline": true,
"segments": [
{
"foreground": "cyan",
"style": "plain",
"template": "\u2570\u2500",
"type": "text"
},
{
"foreground": "lightCyan",
"foreground_templates": [
"{{ if gt .Code 0 }}red{{ end }}"
],
"properties": {
"always_enabled": true
},
"style": "plain",
"template": "\u276f ",
"type": "exit"
}
],
"type": "prompt"
}
],
"osc99": true,
"version": 2
}
# this is Documents/PowerShell/profile.ps1
if ($host.Name -eq 'ConsoleHost')
{
Import-Module posh-git
Import-Module Terminal-Icons
Import-Module PSReadline
Import-Module z
Import-Module PSFzf
$PSProfileRoot = Split-Path $profile
$PROMPT_CONFIG = Join-Path $PSProfileRoot omp.config.json
oh-my-posh --init --shell pwsh --config $PROMPT_CONFIG | Invoke-Expression
Set-PSReadLineOption -PredictionSource HistoryAndPlugin
Set-PSReadLineOption -PredictionViewStyle ListView
Set-PSReadLineOption -Colors @{ "ListPredictionSelected" = "`e[97;100m"; "InlinePrediction" = "`e[30;100m" }
Set-PsFzfOption -PSReadlineChordProvider 'ctrl+f' -PSReadlineChordReverseHistory 'ctrl+r'
#Clear-Host
}
$work = 'D:\git'
{
"$help": "https://aka.ms/terminal-documentation",
"$schema": "https://aka.ms/terminal-profiles-schema",
"actions":
[
{
"command": "find",
"keys": "ctrl+shift+f"
},
{
"command":
{
"action": "splitPane",
"split": "auto",
"splitMode": "duplicate"
},
"keys": "alt+shift+d"
},
{
"command": "paste",
"keys": "ctrl+v"
},
{
"command":
{
"action": "copy",
"singleLine": false
},
"keys": "ctrl+c"
}
],
"copyFormatting": "none",
"copyOnSelect": false,
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"newTabMenu":
[
{
"profile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"type": "profile"
},
{
"profile": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"type": "profile"
},
{
"profile": "{ccaa725d-b749-4fdf-8969-2d4a5a5dd2bd}",
"type": "profile"
},
{
"type": "separator"
},
{
"allowEmpty": false,
"entries":
[
{
"commandline": null,
"name": null,
"source": "Windows.Terminal.VisualStudio",
"type": "matchProfiles"
},
{
"commandline": null,
"name": null,
"source": "VSDebugConsole",
"type": "matchProfiles"
}
],
"icon": "C:/Program Files/Microsoft Visual Studio/2022/Community/Common7/IDE/devenv.exe",
"inline": "never",
"name": "Visual Studio",
"type": "folder"
},
{
"allowEmpty": false,
"entries":
[
{
"profile": "{71160544-14d8-4194-af25-d05feeac7233}",
"type": "profile"
},
{
"profile": "{e04a60e6-dd21-4c45-8676-e240236c40d5}",
"type": "profile"
},
{
"profile": "{17da3cac-b318-431e-8a3e-7fcdefe6d114}",
"type": "profile"
},
{
"profile": "{68149773-bea4-415f-bf71-321062136e83}",
"type": "profile"
},
{
"profile": "{eb897788-e986-4cc8-bad7-42fc524bde2d}",
"type": "profile"
}
],
"icon": "C:/msys64/msys2.ico",
"inline": "never",
"name": "MSYS2",
"type": "folder"
},
{
"type": "separator"
},
{
"type": "remainingProfiles"
}
],
"profiles":
{
"defaults":
{
"colorScheme":
{
"dark": "Mariana",
"light": "Breakers"
},
"font":
{
"face": "CaskaydiaCove Nerd Font"
},
"useAcrylic": true,
"useAtlasEngine": true
},
"list":
[
{
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}",
"hidden": false,
"name": "PowerShell",
"source": "Windows.Terminal.PowershellCore"
},
{
"guid": "{2c4de342-38b7-51cf-b940-2309a097f518}",
"hidden": false,
"name": "Ubuntu",
"source": "Windows.Terminal.Wsl",
"startingDirectory": "/mnt/c/Documents/Downloads"
},
{
"commandline": "wsl mosh user@domain.com",
"guid": "{ccaa725d-b749-4fdf-8969-2d4a5a5dd2bd}",
"hidden": false,
"icon": "ms-appx:///ProfileIcons/{550ce7b8-d500-50ad-8a1a-c400c3262db3}.png",
"name": "MoBoBE"
},
{
"commandline": "%SystemRoot%\\System32\\cmd.exe",
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"hidden": false,
"name": "Command Prompt"
},
{
"colorScheme": "Campbell Powershell",
"commandline": "%SystemRoot%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"hidden": false,
"name": "Windows PowerShell"
},
{
"guid": "{85b575a2-fc2a-5ccb-88e1-acdb34a4ce3d}",
"hidden": false,
"name": "Developer Command Prompt for VS 2022",
"source": "Windows.Terminal.VisualStudio"
},
{
"guid": "{5f4e5705-426e-5509-a824-72fbcf18498b}",
"hidden": false,
"name": "Developer PowerShell for VS 2022",
"source": "Windows.Terminal.VisualStudio"
},
{
"guid": "{93641ade-d7a4-5e98-8fb1-c1daacff04f5}",
"hidden": false,
"name": "Developer Command Prompt for VS 2019",
"source": "Windows.Terminal.VisualStudio"
},
{
"guid": "{5dc882a9-5bc7-55cc-9735-829a8c052982}",
"hidden": false,
"name": "Developer PowerShell for VS 2019",
"source": "Windows.Terminal.VisualStudio"
},
{
"guid": "{16208362-94fc-5b1f-a491-5b2624d5ab56}",
"hidden": false,
"name": "Visual Studio Debug Console",
"source": "VSDebugConsole"
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": true,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
},
{
"commandline": "C:/msys64/msys2_shell.cmd -defterm -here -no-start -msys",
"guid": "{71160544-14d8-4194-af25-d05feeac7233}",
"icon": "C:/msys64/msys2.exe",
"name": "MSYS",
"startingDirectory": "C:/msys64/home/%USERNAME%"
},
{
"commandline": "C:/msys64/msys2_shell.cmd -defterm -here -no-start -clang64",
"guid": "{e04a60e6-dd21-4c45-8676-e240236c40d5}",
"icon": "C:/msys64/clang64.exe",
"name": "MinGW Clang x64",
"startingDirectory": "C:/msys64/home/%USERNAME%"
},
{
"commandline": "C:/msys64/msys2_shell.cmd -defterm -here -no-start -ucrt64",
"guid": "{17da3cac-b318-431e-8a3e-7fcdefe6d114}",
"icon": "C:/msys64/ucrt64.exe",
"name": "MinGW UCRT x64",
"startingDirectory": "C:/msys64/home/%USERNAME%"
},
{
"commandline": "C:/msys64/msys2_shell.cmd -defterm -here -no-start -mingw64",
"guid": "{68149773-bea4-415f-bf71-321062136e83}",
"icon": "C:/msys64/mingw64.exe",
"name": "MinGW x64",
"startingDirectory": "C:/msys64/home/%USERNAME%"
},
{
"commandline": "C:/msys64/msys2_shell.cmd -defterm -here -no-start -mingw32",
"guid": "{eb897788-e986-4cc8-bad7-42fc524bde2d}",
"icon": "C:/msys64/mingw32.exe",
"name": "MinGW x86",
"startingDirectory": "C:/msys64/home/%USERNAME%"
}
]
},
"schemes":
[
{
"background": "#0A0E14",
"black": "#01060E",
"blue": "#53BDFA",
"brightBlack": "#686868",
"brightBlue": "#73D0FF",
"brightCyan": "#95E6CB",
"brightGreen": "#BAE67E",
"brightPurple": "#D4BFFF",
"brightRed": "#F28779",
"brightWhite": "#FFFFFF",
"brightYellow": "#FFD580",
"cursorColor": "#FFFFFF",
"cyan": "#90E1C6",
"foreground": "#B3B1AD",
"green": "#91B362",
"name": "Ayu Dark",
"purple": "#FAE994",
"red": "#EA6C73",
"selectionBackground": "#FFFFFF",
"white": "#C7C7C7",
"yellow": "#F9AF4F"
},
{
"background": "#FAFAFA",
"black": "#000000",
"blue": "#3199E1",
"brightBlack": "#686868",
"brightBlue": "#399EE6",
"brightCyan": "#4CBF99",
"brightGreen": "#86B300",
"brightPurple": "#A37ACC",
"brightRed": "#F07171",
"brightWhite": "#D1D1D1",
"brightYellow": "#F2AE49",
"cursorColor": "#FFFFFF",
"cyan": "#46BA94",
"foreground": "#6C7680",
"green": "#99BF4D",
"name": "Ayu Light",
"purple": "#9E75C7",
"red": "#EA6C6D",
"selectionBackground": "#FFFFFF",
"white": "#C7C7C7",
"yellow": "#ECA944"
},
{
"background": "#1F2430",
"black": "#191E2A",
"blue": "#6DCBFA",
"brightBlack": "#686868",
"brightBlue": "#73D0FF",
"brightCyan": "#95E6CB",
"brightGreen": "#BAE67E",
"brightPurple": "#D4BFFF",
"brightRed": "#F28779",
"brightWhite": "#FFFFFF",
"brightYellow": "#FFD580",
"cursorColor": "#FFFFFF",
"cyan": "#90E1C6",
"foreground": "#CBCCC6",
"green": "#A6CC70",
"name": "Ayu Mirage",
"purple": "#CFBAFA",
"red": "#ED8274",
"selectionBackground": "#FFFFFF",
"white": "#C7C7C7",
"yellow": "#FAD07B"
},
{
"background": "#FCFDFD",
"black": "#FCFDFD",
"blue": "#6699CC",
"brightBlack": "#D5D9DD",
"brightBlue": "#5C99D6",
"brightCyan": "#89D5D7",
"brightGreen": "#99C794",
"brightPurple": "#C695C6",
"brightRed": "#F97B58",
"brightWhite": "#333333",
"brightYellow": "#F9AE58",
"cursorColor": "#5FB4B4",
"cyan": "#5FB4B4",
"foreground": "#333333",
"green": "#80B979",
"name": "Breakers",
"purple": "#A474A4",
"red": "#EC5F66",
"selectionBackground": "#D8DCDF",
"white": "#999999",
"yellow": "#EE932B"
},
{
"background": "#0C0C0C",
"black": "#0C0C0C",
"blue": "#0037DA",
"brightBlack": "#767676",
"brightBlue": "#3B78FF",
"brightCyan": "#61D6D6",
"brightGreen": "#16C60C",
"brightPurple": "#B4009E",
"brightRed": "#E74856",
"brightWhite": "#F2F2F2",
"brightYellow": "#F9F1A5",
"cursorColor": "#FFFFFF",
"cyan": "#3A96DD",
"foreground": "#CCCCCC",
"green": "#13A10E",
"name": "Campbell",
"purple": "#881798",
"red": "#C50F1F",
"selectionBackground": "#FFFFFF",
"white": "#CCCCCC",
"yellow": "#C19C00"
},
{
"background": "#012456",
"black": "#0C0C0C",
"blue": "#0037DA",
"brightBlack": "#767676",
"brightBlue": "#3B78FF",
"brightCyan": "#61D6D6",
"brightGreen": "#16C60C",
"brightPurple": "#B4009E",
"brightRed": "#E74856",
"brightWhite": "#F2F2F2",
"brightYellow": "#F9F1A5",
"cursorColor": "#FFFFFF",
"cyan": "#3A96DD",
"foreground": "#CCCCCC",
"green": "#13A10E",
"name": "Campbell Powershell",
"purple": "#881798",
"red": "#C50F1F",
"selectionBackground": "#FFFFFF",
"white": "#CCCCCC",
"yellow": "#C19C00"
},
{
"background": "#303446",
"black": "#51576D",
"blue": "#8CAAEE",
"brightBlack": "#626880",
"brightBlue": "#8CAAEE",
"brightCyan": "#81C8BE",
"brightGreen": "#A6D189",
"brightPurple": "#F4B8E4",
"brightRed": "#E78284",
"brightWhite": "#A5ADCE",
"brightYellow": "#E5C890",
"cursorColor": "#F2D5CF",
"cyan": "#81C8BE",
"foreground": "#C6D0F5",
"green": "#A6D189",
"name": "Catppuccin Frapp\u00e9",
"purple": "#F4B8E4",
"red": "#E78284",
"selectionBackground": "#626880",
"white": "#B5BFE2",
"yellow": "#E5C890"
},
{
"background": "#EFF1F5",
"black": "#5C5F77",
"blue": "#1E66F5",
"brightBlack": "#ACB0BE",
"brightBlue": "#1E66F5",
"brightCyan": "#179299",
"brightGreen": "#40A02B",
"brightPurple": "#EA76CB",
"brightRed": "#D20F39",
"brightWhite": "#BCC0CC",
"brightYellow": "#DF8E1D",
"cursorColor": "#DC8A78",
"cyan": "#179299",
"foreground": "#4C4F69",
"green": "#40A02B",
"name": "Catppuccin Latte",
"purple": "#EA76CB",
"red": "#D20F39",
"selectionBackground": "#ACB0BE",
"white": "#ACB0BE",
"yellow": "#DF8E1D"
},
{
"background": "#24273A",
"black": "#494D64",
"blue": "#8AADF4",
"brightBlack": "#5B6078",
"brightBlue": "#8AADF4",
"brightCyan": "#8BD5CA",
"brightGreen": "#A6DA95",
"brightPurple": "#F5BDE6",
"brightRed": "#ED8796",
"brightWhite": "#A5ADCB",
"brightYellow": "#EED49F",
"cursorColor": "#F4DBD6",
"cyan": "#8BD5CA",
"foreground": "#CAD3F5",
"green": "#A6DA95",
"name": "Catppuccin Macchiato",
"purple": "#F5BDE6",
"red": "#ED8796",
"selectionBackground": "#5B6078",
"white": "#B8C0E0",
"yellow": "#EED49F"
},
{
"background": "#1E1E2E",
"black": "#45475A",
"blue": "#89B4FA",
"brightBlack": "#585B70",
"brightBlue": "#89B4FA",
"brightCyan": "#94E2D5",
"brightGreen": "#A6E3A1",
"brightPurple": "#F5C2E7",
"brightRed": "#F38BA8",
"brightWhite": "#A6ADC8",
"brightYellow": "#F9E2AF",
"cursorColor": "#F5E0DC",
"cyan": "#94E2D5",
"foreground": "#CDD6F4",
"green": "#A6E3A1",
"name": "Catppuccin Mocha",
"purple": "#F5C2E7",
"red": "#F38BA8",
"selectionBackground": "#585B70",
"white": "#BAC2DE",
"yellow": "#F9E2AF"
},
{
"background": "#FFFFFF",
"black": "#F6F6F6",
"blue": "#228EC3",
"brightBlack": "#767676",
"brightBlue": "#2CBAFF",
"brightCyan": "#28E8C8",
"brightGreen": "#27E046",
"brightPurple": "#AA80FF",
"brightRed": "#E46767",
"brightWhite": "#000000",
"brightYellow": "#FFDD33",
"cursorColor": "#FF4D97",
"cyan": "#22C3A8",
"foreground": "#000000",
"green": "#22C33D",
"name": "Celeste",
"purple": "#8866CC",
"red": "#F55C3D",
"selectionBackground": "#333333",
"white": "#444444",
"yellow": "#F58A3D"
},
{
"background": "#1F2430",
"black": "#000000",
"blue": "#1460D2",
"brightBlack": "#696969",
"brightBlue": "#5555FF",
"brightCyan": "#6AE3FA",
"brightGreen": "#38DE21",
"brightPurple": "#FF55FF",
"brightRed": "#FF0000",
"brightWhite": "#FFFFFF",
"brightYellow": "#FFE50A",
"cursorColor": "#FFFFFF",
"cyan": "#00BFBF",
"foreground": "#CCCCCC",
"green": "#36BA1B",
"name": "Cobalt13x",
"purple": "#DB24BB",
"red": "#CB0A13",
"selectionBackground": "#FFFFFF",
"white": "#BBBBBB",
"yellow": "#EDC809"
},
{
"background": "#282C34",
"black": "#000000",
"blue": "#4283F5",
"brightBlack": "#676E95",
"brightBlue": "#6495EE",
"brightCyan": "#56B7C3",
"brightGreen": "#3FB93F",
"brightPurple": "#FF6AB3",
"brightRed": "#F14C4C",
"brightWhite": "#8A97C3",
"brightYellow": "#FF8A4C",
"cursorColor": "#FF9070",
"cyan": "#56B7C3",
"foreground": "#B0B7C3",
"green": "#98C379",
"name": "Eva Dark",
"purple": "#CF68E1",
"red": "#E51400",
"selectionBackground": "#598DEF",
"white": "#FFFFFF",
"yellow": "#E4BF7F"
},
{
"background": "#EBEEF5",
"black": "#FFFFFF",
"blue": "#4480F4",
"brightBlack": "#AAADB4",
"brightBlue": "#437AED",
"brightCyan": "#00BEC4",
"brightGreen": "#44C145",
"brightPurple": "#EF8ED8",
"brightRed": "#F14C4C",
"brightWhite": "#888888",
"brightYellow": "#FF6D12",
"cursorColor": "#FC8357",
"cyan": "#00BEC4",
"foreground": "#5D5D5F",
"green": "#53A053",
"name": "Eva Light",
"purple": "#C838C6",
"red": "#EC0000",
"selectionBackground": "#0065FF",
"white": "#000000",
"yellow": "#F0AA0B"
},
{
"background": "#303841",
"black": "#303841",
"blue": "#6699CC",
"brightBlack": "#647382",
"brightBlue": "#5C99D6",
"brightCyan": "#8BD6D7",
"brightGreen": "#C6E7C3",
"brightPurple": "#E1BAE1",
"brightRed": "#F97B58",
"brightWhite": "#D8DEE9",
"brightYellow": "#FAC761",
"cursorColor": "#F9AE58",
"cyan": "#5FB4B4",
"foreground": "#D8DEE9",
"green": "#99C794",
"name": "Mariana",
"purple": "#C594C5",
"red": "#EC5F66",
"selectionBackground": "#596673",
"white": "#A6ACB9",
"yellow": "#EE932B"
},
{
"background": "#272822",
"black": "#48483E",
"blue": "#55BCCE",
"brightBlack": "#76715E",
"brightBlue": "#66D9EE",
"brightCyan": "#66EFD5",
"brightGreen": "#A7E22E",
"brightPurple": "#AE82FF",
"brightRed": "#FA2772",
"brightWhite": "#CFD0C2",
"brightYellow": "#E7DB75",
"cursorColor": "#FFFFFF",
"cyan": "#56B7A5",
"foreground": "#F1EBEB",
"green": "#8FC029",
"name": "Monokai",
"purple": "#9358FE",
"red": "#DC2566",
"selectionBackground": "#FFFFFF",
"white": "#ACADA1",
"yellow": "#D4C96E"
},
{
"background": "#283033",
"black": "#000000",
"blue": "#3A9BDB",
"brightBlack": "#555555",
"brightBlue": "#A1D7FF",
"brightCyan": "#55FFFF",
"brightGreen": "#93C863",
"brightPurple": "#FF55FF",
"brightRed": "#FF0003",
"brightWhite": "#FFFFFF",
"brightYellow": "#FEF874",
"cursorColor": "#FFFFFF",
"cyan": "#00BBBB",
"foreground": "#CDCDCD",
"green": "#00BB00",
"name": "Obsidian",
"purple": "#BB00BB",
"red": "#A60001",
"selectionBackground": "#FFFFFF",
"white": "#BBBBBB",
"yellow": "#FECD22"
},
{
"background": "#282C34",
"black": "#282C34",
"blue": "#61AFEF",
"brightBlack": "#5A6374",
"brightBlue": "#61AFEF",
"brightCyan": "#56B6C2",
"brightGreen": "#98C379",
"brightPurple": "#C678DD",
"brightRed": "#E06C75",
"brightWhite": "#DCDFE4",
"brightYellow": "#E5C07B",
"cursorColor": "#FFFFFF",
"cyan": "#56B6C2",
"foreground": "#DCDFE4",
"green": "#98C379",
"name": "One Half Dark",
"purple": "#C678DD",
"red": "#E06C75",
"selectionBackground": "#FFFFFF",
"white": "#DCDFE4",
"yellow": "#E5C07B"
},
{
"background": "#FAFAFA",
"black": "#383A42",
"blue": "#0184BC",
"brightBlack": "#4F525D",
"brightBlue": "#61AFEF",
"brightCyan": "#56B5C1",
"brightGreen": "#98C379",
"brightPurple": "#C577DD",
"brightRed": "#DF6C75",
"brightWhite": "#FFFFFF",
"brightYellow": "#E4C07A",
"cursorColor": "#4F525D",
"cyan": "#0997B3",
"foreground": "#383A42",
"green": "#50A14F",
"name": "One Half Light",
"purple": "#A626A4",
"red": "#E45649",
"selectionBackground": "#FFFFFF",
"white": "#FAFAFA",
"yellow": "#C18301"
},
{
"background": "#002B36",
"black": "#002B36",
"blue": "#268BD2",
"brightBlack": "#073642",
"brightBlue": "#839496",
"brightCyan": "#93A1A1",
"brightGreen": "#586E75",
"brightPurple": "#6C71C4",
"brightRed": "#CB4B16",
"brightWhite": "#FDF6E3",
"brightYellow": "#657B83",
"cursorColor": "#FFFFFF",
"cyan": "#2AA198",
"foreground": "#839496",
"green": "#859900",
"name": "Solarized Dark",
"purple": "#D33682",
"red": "#DC322F",
"selectionBackground": "#FFFFFF",
"white": "#EEE8D5",
"yellow": "#B58900"
},
{
"background": "#FDF6E3",
"black": "#002B36",
"blue": "#268BD2",
"brightBlack": "#073642",
"brightBlue": "#839496",
"brightCyan": "#93A1A1",
"brightGreen": "#586E75",
"brightPurple": "#6C71C4",
"brightRed": "#CB4B16",
"brightWhite": "#FDF6E3",
"brightYellow": "#657B83",
"cursorColor": "#002B36",
"cyan": "#2AA198",
"foreground": "#657B83",
"green": "#859900",
"name": "Solarized Light",
"purple": "#D33682",
"red": "#DC322F",
"selectionBackground": "#FFFFFF",
"white": "#EEE8D5",
"yellow": "#B58900"
},
{
"background": "#000000",
"black": "#000000",
"blue": "#3465A4",
"brightBlack": "#555753",
"brightBlue": "#729FCF",
"brightCyan": "#34E2E2",
"brightGreen": "#8AE234",
"brightPurple": "#AD7FA8",
"brightRed": "#EF2929",
"brightWhite": "#EEEEEC",
"brightYellow": "#FCE94F",
"cursorColor": "#FFFFFF",
"cyan": "#06989A",
"foreground": "#D3D7CF",
"green": "#4E9A06",
"name": "Tango Dark",
"purple": "#75507B",
"red": "#CC0000",
"selectionBackground": "#FFFFFF",
"white": "#D3D7CF",
"yellow": "#C4A000"
},
{
"background": "#FFFFFF",
"black": "#000000",
"blue": "#3465A4",
"brightBlack": "#555753",
"brightBlue": "#729FCF",
"brightCyan": "#34E2E2",
"brightGreen": "#8AE234",
"brightPurple": "#AD7FA8",
"brightRed": "#EF2929",
"brightWhite": "#EEEEEC",
"brightYellow": "#FCE94F",
"cursorColor": "#000000",
"cyan": "#06989A",
"foreground": "#555753",
"green": "#4E9A06",
"name": "Tango Light",
"purple": "#75507B",
"red": "#CC0000",
"selectionBackground": "#FFFFFF",
"white": "#D3D7CF",
"yellow": "#C4A000"
},
{
"background": "#000000",
"black": "#000000",
"blue": "#000080",
"brightBlack": "#808080",
"brightBlue": "#0000FF",
"brightCyan": "#00FFFF",
"brightGreen": "#00FF00",
"brightPurple": "#FF00FF",
"brightRed": "#FF0000",
"brightWhite": "#FFFFFF",
"brightYellow": "#FFFF00",
"cursorColor": "#FFFFFF",
"cyan": "#008080",
"foreground": "#C0C0C0",
"green": "#008000",
"name": "Vintage",
"purple": "#800080",
"red": "#800000",
"selectionBackground": "#FFFFFF",
"white": "#C0C0C0",
"yellow": "#808000"
}
],
"theme": "system",
"themes":
[
{
"name": "Catppuccin Frappe",
"tab":
{
"background": "#414559FF",
"showCloseButton": "always",
"unfocusedBackground": null
},
"tabRow":
{
"background": "#303446FF",
"unfocusedBackground": "#292C3CFF"
},
"window":
{
"applicationTheme": "dark",
"useMica": false
}
},
{
"name": "Catppuccin Latte",
"tab":
{
"background": "#CCD0DAFF",
"showCloseButton": "always",
"unfocusedBackground": null
},
"tabRow":
{
"background": "#EFF1F5FF",
"unfocusedBackground": "#E6E9EFFF"
},
"window":
{
"applicationTheme": "light",
"useMica": false
}
},
{
"name": "Catppuccin Macchiato",
"tab":
{
"background": "#363A4FFF",
"showCloseButton": "always",
"unfocusedBackground": null
},
"tabRow":
{
"background": "#24273AFF",
"unfocusedBackground": "#181926FF"
},
"window":
{
"applicationTheme": "dark",
"useMica": false
}
},
{
"name": "Catppuccin Mocha",
"tab":
{
"background": "#313244FF",
"showCloseButton": "always",
"unfocusedBackground": null
},
"tabRow":
{
"background": "#1E1E2EFF",
"unfocusedBackground": "#181825FF"
},
"window":
{
"applicationTheme": "dark",
"useMica": false
}
}
],
"useAcrylicInTabRow": true,
"windowingBehavior": "useExisting"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment