Last active
December 15, 2019 16:44
-
-
Save andersonba/fdb1345edd73247c9f917358d2b945b2 to your computer and use it in GitHub Desktop.
My Blink Appearance - Font & 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
@font-face { | |
font-family: "Fira Code Nerd Font"; | |
font-style: normal; | |
font-weight: 200; | |
src: url('https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/FiraCode/Light/complete/Fura%20Code%20Light%20Nerd%20Font%20Complete.ttf') format('truetype'); | |
} | |
@font-face { | |
font-family: "Fira Code Nerd Font"; | |
font-style: normal; | |
font-weight: 400; | |
src: url('https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/FiraCode/Retina/complete/Fura%20Code%20Retina%20Nerd%20Font%20Complete.ttf') format('truetype'); | |
} | |
@font-face { | |
font-family: "Fira Code Nerd Font"; | |
font-weight: 600; | |
src: url('https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/FiraCode/Medium/complete/Fura%20Code%20Medium%20Nerd%20Font%20Complete.ttf') format('truetype'); | |
} | |
@font-face { | |
font-family: "Fira Code Nerd Font"; | |
font-weight: 800; | |
src: url('https://github.com/ryanoasis/nerd-fonts/raw/master/patched-fonts/FiraCode/Bold/complete/Fura%20Code%20Bold%20Nerd%20Font%20Complete.ttf') format('truetype'); | |
} |
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
// blink theme inspired by xcode-dark | |
// https://github.com/arzg/vim-colors-xcode | |
black = '#33343c'; | |
red = '#ff8170'; // red | |
green = '#78c2b3'; // green | |
yellow = '#d9c97c'; // yellow | |
blue = '#4eb0cc'; // blue | |
magenta = '#ff7ab2'; // pink | |
cyan = '#b281eb'; // cyan | |
white = '#dfdfe0'; // light gray | |
lightBlack = '#7f8c98'; // medium gray | |
lightRed = '#ff8170'; // red | |
lightGreen = '#acf2e4'; // green | |
lightYellow = '#ffa14f'; // yellow | |
lightBlue = '#6bdfff'; // blue | |
lightMagenta= '#ff7ab2'; // pink | |
lightCyan = '#dabaff'; // cyan | |
lightWhite = '#dfdfe0'; // 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', white); | |
t.prefs_.set('foreground-color', '#dfdfe0'); | |
t.prefs_.set('background-color', '#292a30'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment