Skip to content

Instantly share code, notes, and snippets.

@pasela
Created August 21, 2012 07:03
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save pasela/3412915 to your computer and use it in GitHub Desktop.
Save pasela/3412915 to your computer and use it in GitHub Desktop.
mintty: A pastel color theme for mintty

A pastel color theme for mintty

screenshot

Settings

Merge mintty-color-pastel-rc into your .minttyrc

or

Evaluate mintty-color-pastel.sh using source command.

source /path/to/mintty-color-pastel.sh
ForegroundColour = 187, 187, 187
BackgroundColour = 38, 38, 38
CursorColour = 255, 165, 96
IMECursorColour = 128, 224, 160
Black = 124, 124, 124
BoldBlack = 79, 79, 79
Red = 255, 182, 176
BoldRed = 255, 108, 96
Green = 206, 255, 172
BoldGreen = 168, 255, 96
Yellow = 255, 255, 204
BoldYellow = 255, 255, 182
Blue = 181, 220, 255
BoldBlue = 150, 203, 254
Magenta = 255, 156, 254
BoldMagenta = 255, 115, 253
Cyan = 223, 223, 254
BoldCyan = 198, 197, 254
White = 255, 255, 255
BoldWhite = 238, 238, 238
echo -ne '\e]10;#bbbbbb\a' # ForegroundColour
echo -ne '\e]11;#262626\a' # BackgroundColour
echo -ne '\e]12;#ffa560\a' # CursorColour
echo -ne '\e]4;262;#80e0a0\a' # IMECursorColour
echo -ne '\e]4;0;#7c7c7c\a' # Black
echo -ne '\e]4;8;#4f4f4f\a' # BoldBlack
echo -ne '\e]4;1;#ffb6b0\a' # Red
echo -ne '\e]4;9;#ff6c60\a' # BoldRed
echo -ne '\e]4;2;#ceffac\a' # Green
echo -ne '\e]4;10;#a8ff60\a' # BoldGreen
echo -ne '\e]4;3;#ffffcc\a' # Yellow
echo -ne '\e]4;11;#ffffb6\a' # BoldYellow
echo -ne '\e]4;4;#b5dcff\a' # Blue
echo -ne '\e]4;12;#96cbfe\a' # BoldBlue
echo -ne '\e]4;5;#ff9cfe\a' # Magenta
echo -ne '\e]4;13;#ff73fd\a' # BoldMagenta
echo -ne '\e]4;6;#dfdffe\a' # Cyan
echo -ne '\e]4;14;#c6c5fe\a' # BoldCyan
echo -ne '\e]4;7;#ffffff\a' # White
echo -ne '\e]4;15;#eeeeee\a' # BoldWhite
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment