Last active
August 23, 2023 19:33
-
-
Save mikepjb/0cb853ace68a270af04fc5e738744d4f to your computer and use it in GitHub Desktop.
Config to theme blink.sh
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
// vim: ft=javascript | |
black = '#57534e'; | |
lightBlack = '#d6d3d1'; | |
red = '#f87171'; | |
lightRed = '#fecaca'; | |
green = '#a3e635'; | |
lightGreen = '#d9f99d'; | |
yellow = '#fbbf24'; | |
lightYellow = '#fde68a'; | |
blue = '#22d3ee'; | |
lightBlue = '#a5f3fc'; | |
magenta = '#f472b6'; | |
lightMagenta = '#fbcfe8'; | |
cyan = '#22d3ee'; | |
lightCyan = '#bae6fd'; | |
white = '#f1f1f1'; | |
lightWhite = '#fffefe'; | |
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(251, 191, 36, 0.5)'); | |
t.prefs_.set('background-color', '#1c1917'); | |
t.prefs_.set('foreground-color', '#f5f5f4'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment