Last active
November 23, 2018 12:42
-
-
Save appleton/38073430024fde50c575151e1a40cdb1 to your computer and use it in GitHub Desktop.
A blink.sh theme
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
const black = '#272c33' | |
const red = '#e06b74' | |
const green = '#98c378' | |
const yellow = '#e5c07a' | |
const blue = '#60aeee' | |
const magenta = '#c677dc' | |
const cyan = '#56b6c1' | |
const white = '#abb1bf' | |
const lightBlack = '#31353f' | |
const lightRed = '#f97782' | |
const lightGreen = '#aadb87' | |
const lightYellow = '#ffd589' | |
const lightBlue = '#68bbfe' | |
const lightMagenta = '#dc85f7' | |
const lightCyan = '#60ccdb' | |
const lightWhite = '#b1b9cb' | |
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(72,104,166, 0.5)') | |
t.prefs_.set('foreground-color', '#abb2bf') | |
t.prefs_.set('background-color', '#002833') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment