Last active
December 28, 2016 07:07
-
-
Save goerz/39ed210d7a02ac23387be9d20f396dcc to your computer and use it in GitHub Desktop.
Blink color scheme
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
black = '#000000'; | |
red = '#F25A00'; // red | |
green = '#6AAF19'; // green | |
yellow = '#9F9F8F'; // yellow | |
blue = '#0225C7'; // blue | |
magenta = '#AE81FF'; // pink | |
cyan = '#28C6E4'; // cyan | |
white = '#ffffff'; // light gray | |
lightBlack = '#C2E8FF'; // medium gray | |
lightRed = '#FD971F'; // red | |
lightGreen = '#529B2F'; // green | |
lightYellow = '#9F9F8F'; // yellow | |
lightBlue = '#6871FF'; // blue | |
lightMagenta= '#F92672'; // pink | |
lightCyan = '#28C6E4'; // cyan | |
lightWhite = '#E0E0E0'; // 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(0, 0, 0, 0.5)'); | |
t.prefs_.set('foreground-color', '#000000'); | |
t.prefs_.set('background-color', white); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment