Skip to content

Instantly share code, notes, and snippets.

@manoj-choudhari-git
Last active August 29, 2020 21:24
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 manoj-choudhari-git/c72eac19b6924011815f49ab3495bce8 to your computer and use it in GitHub Desktop.
Save manoj-choudhari-git/c72eac19b6924011815f49ab3495bce8 to your computer and use it in GitHub Desktop.
Windows Terminal: Changing Color Schemes
"profiles":
{
"defaults":
{
// Put settings here that you want to apply to all profiles.
"colorScheme": "FrontEndDelight"
},
"list":
[
{
// Make changes here to the powershell.exe profile.
"guid": "{aaaaabbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false,
"colorScheme": "FrontEndDelight"
},
{
// Make changes here to the cmd.exe profile.
"guid": "{0caa0dad-35be-5f56-a8ff-aa9a87ff44bf}",
"name": "Command Prompt",
"commandline": "cmd.exe",
"hidden": false
}
]
},
// Add custom color schemes to this array.
// To learn more about color schemes, visit https://aka.ms/terminal-color-schemes
"schemes": [
{
"name": "FrontEndDelight",
"black": "#242526",
"red": "#f8511b",
"green": "#565747",
"yellow": "#fa771d",
"blue": "#2c70b7",
"purple": "#f02e4f",
"cyan": "#3ca1a6",
"white": "#adadad",
"brightBlack": "#5fac6d",
"brightRed": "#f74319",
"brightGreen": "#74ec4c",
"brightYellow": "#fdc325",
"brightBlue": "#3393ca",
"brightPurple": "#e75e4f",
"brightCyan": "#4fbce6",
"brightWhite": "#8c735b",
"background": "#1b1c1d",
"foreground": "#adadad"
}
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment