Last active
November 30, 2022 08:16
-
-
Save lysandroc/52efe995095b9b5fa829f3bc5d70e73c to your computer and use it in GitHub Desktop.
gruvbox scheme for windows terminal - gruvbox theme for windows terminal
This file contains hidden or 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
// Define gruvbox colors | |
"schemes": [ | |
{ | |
"name" : "Gruvbox for windows terminal", | |
"cursorColor": "#FFFFFF", | |
"selectionBackground": "#FFFFFF", | |
"background" : "#1d2021", | |
"foreground" : "#ebdbb2", | |
"black": "#282828", | |
"red": "#cc241d", | |
"green": "#98971a", | |
"yellow": "#d79921", | |
"blue": "#458588", | |
"magenta": "#b16286", | |
"purple" : "#881798", | |
"cyan": "#689d6a", | |
"white": "#a89984", | |
"brightBlack": "#928374", | |
"brightRed": "#fb4934", | |
"brightGreen": "#b8bb26", | |
"brightYellow": "#fabd2f", | |
"brightBlue": "#83a598", | |
"brightMagenta": "#d3869b", | |
"brightCyan": "#8ec07c", | |
"brightPurple" : "#B4009E", | |
"brightWhite": "#ebdbb2" | |
} | |
], | |
// Use the defined scheme colors inside your profile | |
{ | |
"colorScheme": "Gruvbox" | |
...some other properties | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment