Created
May 25, 2019 20:55
-
-
Save davidcelis/f4b3eec60ad2c37d4108e5560c86c021 to your computer and use it in GitHub Desktop.
A port of the Ariake Dark theme for Blink shell.
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 = '#2a2d37'; | |
red = '#85b1e0'; | |
green = '#9aefea'; | |
yellow = '#dda2f6'; | |
blue = '#f5faff'; | |
magenta = '#7e7edd'; | |
cyan = '#4d8acb'; | |
white = '#b9bed5'; | |
lightBlack = '#2a2d37'; | |
lightRed = '#85b1e0'; | |
lightGreen = '#9aefea'; | |
lightYellow = '#dda2f6'; | |
lightBlue = '#f5faff'; | |
lightMagenta = '#7e7edd'; | |
lightCyan = '#4d8acb'; | |
lightWhite = '#b9bed5'; | |
background = '#2a2d37'; | |
text = '#b9bed5'; | |
boldText = '#b9bed5'; | |
cursor = '#5274ff'; // '#c4c5c8'; | |
selection = '#444444'; | |
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('foreground-color', text); | |
t.prefs_.set('background-color', background); | |
t.prefs_.set('cursor-color', cursor); | |
t.prefs_.set('cursor-blink', false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment