Forked from anhari/gist:23ae031e93e2f465258439cb6802acad
Last active
August 15, 2019 09:25
-
-
Save drscream/8d768b12d6618d0a34f8ab9fb7ec2d30 to your computer and use it in GitHub Desktop.
gruvbox blink shell theme
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
bg = '#000000'; | |
black = '#282828'; | |
red = '#cc241d'; // red | |
green = '#98971a'; // green | |
yellow = '#d79921'; // yellow | |
blue = '#458588'; // blue | |
magenta = '#b16286'; // pink | |
cyan = '#689d6a'; // cyan | |
white = '#a89984'; // light gray | |
lightBlack = '#928374'; // medium gray | |
lightRed = '#fb4934'; // red | |
lightGreen = '#b8bb26'; // green | |
lightYellow = '#fabd2f'; // yellow | |
lightBlue = '#83a598'; // blue | |
lightMagenta= '#d3869b'; // pink | |
lightCyan = '#8ec07c'; // cyan | |
lightWhite = '#ebdbb2'; // white | |
t.prefs_.set('color-palette-overrides', | |
[ black , red , green , yellow, | |
blue , magenta , cyan , white, | |
lightBlack , lightRed , lightGreen , lightYellow, | |
lightBlue , lightMagenta , lightCyan , lightWhite ]); | |
t.prefs_.set('cursor-color', 'rgba(235, 219, 178, 0.7)'); | |
t.prefs_.set('foreground-color', lightWhite); | |
t.prefs_.set('background-color', bg); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment