Skip to content

Instantly share code, notes, and snippets.

@andersonba
Last active December 15, 2019 16:44
Show Gist options
  • Save andersonba/fdb1345edd73247c9f917358d2b945b2 to your computer and use it in GitHub Desktop.
Save andersonba/fdb1345edd73247c9f917358d2b945b2 to your computer and use it in GitHub Desktop.
My Blink Appearance - Font & Theme
@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');
}
// 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