Skip to content

Instantly share code, notes, and snippets.

@Asesjix
Last active July 27, 2020 12:05
Show Gist options
  • Save Asesjix/9a2c95b0bfc456a429e8b7427bac336c to your computer and use it in GitHub Desktop.
Save Asesjix/9a2c95b0bfc456a429e8b7427bac336c to your computer and use it in GitHub Desktop.
Windows Terminal - VS Code Schemes
{
// Your settings.json content...
"profiles": {
"defaults": {
"colorScheme": "Dark+",
"fontFace": "Cascadia Mono PL"
}
// Your settings.json content...
},
// Your settings.json content...
"schemes": [
{
"name": "Dark+",
"foreground": "#d4d4d4",
"background": "#1e1e1e",
"cursorColor": "#aeafad",
"black": "#000000",
"red": "#cd3131",
"green": "#0dbc79",
"yellow": "#e5e510",
"blue": "#2472c8",
"purple": "#bc3fbc",
"cyan": "#11a8cd",
"white": "#e5e5e5",
"brightBlack": "#666666",
"brightRed": "#f14c4c",
"brightGreen": "#23d18b",
"brightYellow": "#f5f543",
"brightBlue": "#3b8eea",
"brightPurple": "#d670d6",
"brightCyan": "#29b8db",
"brightWhite": "#e5e5e5"
},
{
"name": "Light+",
"foreground": "#000000",
"background": "#ffffff",
"cursorColor": "#000000",
"black": "#000000",
"red": "#cd3131",
"green": "#00bc00",
"yellow": "#949800",
"blue": "#0451a5",
"purple": "#bc05bc",
"cyan": "#0598bc",
"white": "#555555",
"brightBlack": "#666666",
"brightRed": "#cd3131",
"brightGreen": "#23d18b",
"brightYellow": "#b5ba00",
"brightBlue": "#0451a5",
"brightPurple": "#bc05bc",
"brightCyan": "#0598bc",
"brightWhite": "#a5a5a5"
}
]
// Your settings.json content...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment