Last active
October 8, 2024 18:14
-
-
Save goerz/6ebedd5b0f0f4c559e9a6bc4098b5ee7 to your computer and use it in GitHub Desktop.
Light Color Scheme for Blink
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 = '#000000'; | |
red = '#B9211B'; | |
green = '#429429#'; | |
yellow = '#96942D'; | |
blue = '#081B90'; | |
magenta = '#8A2E90'; | |
cyan = '#419295'; | |
white = '#C7C7C7'; | |
lightBlack = '#686868'; | |
lightRed = '#ED776D'; | |
lightGreen = '#70C562'; | |
lightYellow = '#C8C663'; | |
lightBlue = '#5359C1'; | |
lightMagenta= '#BB63C3'; | |
lightCyan = '#6FC4C7'; | |
lightWhite = '#FAFAFA'; | |
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', '#FFFFFF'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment