Last active
May 25, 2021 00:11
-
-
Save pyrho/8e5caf07d37675c0b1d8b1bbfddacdb7 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
black = '#1d292f'; | |
red = '#f7768e'; // red | |
green = '#9ece6a'; // green | |
yellow = '#e0af68'; // yellow | |
blue = '#7aa2f7'; // blue | |
magenta = '#bb9af7'; // pink | |
cyan = '#7dcfff'; // cyan | |
white = '#a9b1d6'; // light gray | |
lightBlack = '#414868'; // medium gray | |
lightRed = '#f7768e'; // red | |
lightGreen = '#9ece6a'; // green | |
lightYellow = '#e9af68'; // yellow | |
lightBlue = '#7aa2f7'; // blue | |
lightMagenta= '#bb9af7'; // pink | |
lightCyan = '#7dcfff'; // cyan | |
lightWhite = '#c9caf5'; // 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(92, 202, 245, 0.5)'); | |
t.prefs_.set('foreground-color', '#c9caf5'); | |
t.prefs_.set('background-color', '#24283b'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment