Skip to content

Instantly share code, notes, and snippets.

@namick
Created February 17, 2012 22:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save namick/1855945 to your computer and use it in GitHub Desktop.
Save namick/1855945 to your computer and use it in GitHub Desktop.
Load the tango palette into cygwin mintty
# Load the tango palette into cygwin mintty
echo -ne '\e]4;0;#2E3436\a' # 0
echo -ne '\e]4;1;#CC0000\a' # 1
echo -ne '\e]4;2;#4E9A06\a' # 2
echo -ne '\e]4;3;#C4A000\a' # 3
echo -ne '\e]4;4;#3465A4\a' # 4
echo -ne '\e]4;5;#75507B\a' # 5
echo -ne '\e]4;6;#06989A\a' # 6
echo -ne '\e]4;7;#D3D7CF\a' # 7
echo -ne '\e]4;8;#555753\a' # 8
echo -ne '\e]4;9;#EF2929\a' # 9
echo -ne '\e]4;10;#8AE234\a' # 10
echo -ne '\e]4;11;#FCE94F\a' # 11
echo -ne '\e]4;12;#729FCF\a' # 12
echo -ne '\e]4;13;#AD7FA8\a' # 13
echo -ne '\e]4;14;#34E2E2\a' # 14
echo -ne '\e]4;15;#EEEEEC\a' # 15
echo -ne '\e]10;#D3D7CF\a' # foreground
echo -ne '\e]11;#000000\a' # background
echo -ne '\e]12;#ffffff\a' # cursor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment