Skip to content

Instantly share code, notes, and snippets.

@garevans
Last active December 10, 2021 21:40
Show Gist options
  • Save garevans/3da502a13e03f595b823631ec52c69c8 to your computer and use it in GitHub Desktop.
Save garevans/3da502a13e03f595b823631ec52c69c8 to your computer and use it in GitHub Desktop.
Peppermint Terminal Theme - Credit Noah Frederick
black = '#4C4C4C';
red = '#FF6685'; // red
green = '#A6EBA6'; // green
yellow = '#FFDC72'; // yellow
blue = '#5DC6F5'; // blue
magenta = '#FF8FFF'; // pink
cyan = '#86D1D7'; // cyan
white = '#DBDBDB'; // light gray
lightBlack = '#737373'; // medium gray
lightRed = '#FFA8BA'; // red
lightGreen = '#C5EBC5'; // green
lightYellow = '#F9F9A5'; // yellow
lightBlue = '#8DDBFF'; // blue
lightMagenta= '#FFABFF'; // pink
lightCyan = '#B0F0F0'; // cyan
lightWhite = '#FFFFFF'; // white
bgcolor = '#000000'; // black
txtcolor = '#E6E6E6'; // white
curcolor = '#FF0028'; // 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');
@garevans
Copy link
Author

Credit https://noahfrederick.com/log/lion-terminal-theme-peppermint

I simply copied the colours to allow me to use them with blink.sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment