Skip to content

Instantly share code, notes, and snippets.

@garevans
Created February 25, 2022 14:18
Show Gist options
  • Save garevans/fe7edc48802cce99a7da6c8cd1fa4a3e to your computer and use it in GitHub Desktop.
Save garevans/fe7edc48802cce99a7da6c8cd1fa4a3e to your computer and use it in GitHub Desktop.
Campbell theme for blink shell from Windows Terminal
black = '#0C0C0C';
red = '#C50F1F'; // red
green = '#13A10E'; // green
yellow = '#C19C00'; // yellow
blue = '#0037DA'; // blue
magenta = '#881798'; // pink
cyan = '#3A96DD'; // cyan
white = '#CCCCCC'; // light gray
lightBlack = '#767676'; // medium gray
lightRed = '#E74856'; // red
lightGreen = '#16C60C'; // green
lightYellow = '#F9F1A5'; // yellow
lightBlue = '#3B78FF'; // blue
lightMagenta= '#B4009E'; // pink
lightCyan = '#61D6D6'; // cyan
lightWhite = '#F2F2F2'; // white
bgcolor = '#0C0C0C'; // black
txtcolor = '#CCCCCC'; // white
curcolor = '#C50F1F'; // red
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(255, 0, 40, 0.5)');
t.prefs_.set('foreground-color', '#E6E6E6');
t.prefs_.set('background-color', '#000000');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment