Last active
June 8, 2022 22:07
-
-
Save pmrt/31ada29f9a604314c4bae1351897675a 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 = '#322e42'; | |
red = '#d84f76'; // red | |
green = '#8aa872'; // green | |
yellow = '#e6a852'; // yellow | |
blue = '#4a869c'; // blue | |
magenta = '#a580d2'; // pink | |
cyan = '#7bb8c1'; // cyan | |
white = '#b1acde'; // light gray | |
lightBlack = '#393552'; // medium gray | |
lightRed = '#eb6f92'; // red | |
lightGreen = '#a3be8c'; // green | |
lightYellow = '#f6c177'; // yellow | |
lightBlue = '#569fba'; // blue | |
lightMagenta= '#c4a7e7'; // pink | |
lightCyan = '#9ccfd8'; // cyan | |
lightWhite = '#e0def4'; // 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(55, 51, 84, 0.5)'); | |
t.prefs_.set('foreground-color', '#eae8ff'); | |
t.prefs_.set('background-color', '#191726'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment