Last active
December 4, 2015 18:15
-
-
Save gsf/e040b59c784d92aae052 to your computer and use it in GitHub Desktop.
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
var BASE00 = '#000000'; | |
var BASE01 = '#303030'; | |
var BASE02 = '#505050'; | |
var BASE03 = '#b0b0b0'; | |
var BASE04 = '#d0d0d0'; | |
var BASE05 = '#e0e0e0'; | |
var BASE06 = '#f5f5f5'; | |
var BASE07 = '#ffffff'; | |
var BASE08 = '#fb0120'; | |
var BASE09 = '#fc6d24'; | |
var BASE0A = '#fda331'; | |
var BASE0B = '#a1c659'; | |
var BASE0C = '#76c7b7'; | |
var BASE0D = '#6fb3d2'; | |
var BASE0E = '#d381c3'; | |
var BASE0F = '#be643c'; | |
term_.prefs_.set('foreground-color', BASE05); | |
term_.prefs_.set('background-color', BASE00); | |
// This cursor color isn't exactly base16-bright but it fits | |
// in well enough and I like the opacity level | |
term_.prefs_.set('cursor-color', 'rgba(255, 255, 255, 0.5)'); | |
term_.prefs_.set('color-palette-overrides', [ | |
BASE00, | |
BASE08, | |
BASE0B, | |
BASE0A, | |
BASE0D, | |
BASE0E, | |
BASE0C, | |
BASE05, | |
BASE03, | |
BASE09, | |
BASE01, | |
BASE02, | |
BASE04, | |
BASE06, | |
BASE0F, | |
BASE07, | |
]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment