Last active
July 8, 2020 20:58
-
-
Save mogzol/9660fc59ed856d64b9db40165beed9a1 to your computer and use it in GitHub Desktop.
VS Code color scheme for Windows Terminal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// NOTE: This is a partial version of the settings, copy what you need into your own Windows Terminal's settings.json | |
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"profiles": { | |
"defaults": { | |
// Put settings here that you want to apply to all profiles | |
"colorScheme": "VS Code" | |
}, | |
"list": [ | |
// Profiles go here | |
] | |
}, | |
"schemes": [ | |
{ | |
"name": "VS Code", | |
"background": "#1e1e1e", | |
"foreground": "#cccccc", | |
"black": "#000000", | |
"blue": "#2472c8", | |
"brightBlack": "#666666", | |
"brightBlue": "#3b8eea", | |
"brightCyan": "#29b8db", | |
"brightGreen": "#23d18b", | |
"brightPurple": "#d670d6", | |
"brightRed": "#f14c4c", | |
"brightWhite": "#e5e5e5", | |
"brightYellow": "#f5f543", | |
"cyan": "#11a8cd", | |
"green": "#0dbc79", | |
"purple": "#bc3fbc", | |
"red": "#cd3131", | |
"white": "#e5e5e5", | |
"yellow": "#e5e510" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment