Skip to content

Instantly share code, notes, and snippets.

@YujiShen
Last active May 4, 2021 07:39
Show Gist options
  • Save YujiShen/6795a758271489c4ba8c9898775e7b72 to your computer and use it in GitHub Desktop.
Save YujiShen/6795a758271489c4ba8c9898775e7b72 to your computer and use it in GitHub Desktop.
One Dark theme for Blink (based on https://github.com/balajisivaraman/emacs-one-themes)
black = '#272c33';
red = '#e78287'; // red
green = '#a7cb8b'; // green
yellow = '#daaa78'; // yellow
blue = '#71bdf2'; // blue
magenta = '#d190e3'; // pink
cyan = '#65c1cd'; // cyan
white = '#b9bfca'; // light gray
lightBlack = '#6f7683'; // medium gray
lightRed = '#e78287'; // red
lightGreen = '#a7cb8b'; // green
lightYellow = '#daaa78'; // yellow
lightBlue = '#71bdf2'; // blue
lightMagenta= '#d190e3'; // pink
lightCyan = '#65c1cd'; // cyan
lightWhite = '#fefefe'; // 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', 'rgba(235, 162, 44, 0.5)');
t.prefs_.set('cursor-blink', false);
t.prefs_.set('foreground-color', '#b9bfca');
t.prefs_.set('background-color', black);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment