Skip to content

Instantly share code, notes, and snippets.

@pasela
Created August 22, 2012 06:18
Show Gist options
  • Star 27 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save pasela/3422835 to your computer and use it in GitHub Desktop.
Save pasela/3422835 to your computer and use it in GitHub Desktop.
mintty: A soft pastel color theme(xoria256) for mintty

A soft pastel color theme for mintty

This is ported version of color theme xoria256.

screenshot

Settings

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

or

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

source /path/to/mintty-color-xoria256.sh

Original and another version

xoria256.vim - Soft pastel gamma on dark background, same appearence in {,g}vim : vim online
http://www.vim.org/scripts/script.php?script_id=2140

xoria256 terminal color scheme - The Terminal Programmer
http://snk.tuxfamily.org/log/xoria256-terminal-color-scheme.html

ForegroundColour = 208, 208, 208
BackgroundColour = 28, 28, 28
CursorColour = 255, 175, 0
IMECursorColour = 128, 224, 160
Black = 12, 12, 12
BoldBlack = 10, 10, 10
Red = 215, 135, 135
BoldRed = 223, 135, 135
Green = 175, 215, 135
BoldGreen = 175, 223, 135
Yellow = 247, 247, 175
BoldYellow = 255, 255, 175
Blue = 135, 175, 215
BoldBlue = 135, 175, 223
Magenta = 215, 175, 215
BoldMagenta = 223, 175, 223
Cyan = 175, 215, 215
BoldCyan = 175, 223, 223
White = 230, 230, 230
BoldWhite = 238, 238, 238
echo -ne '\e]10;#d0d0d0\a' # ForegroundColour
echo -ne '\e]11;#1c1c1c\a' # BackgroundColour
echo -ne '\e]12;#ffaf00\a' # CursorColour
echo -ne '\e]4;262;#80e0a0\a' # IMECursorColour
echo -ne '\e]4;0;#0c0c0c\a' # Black
echo -ne '\e]4;8;#0a0a0a\a' # BoldBlack
echo -ne '\e]4;1;#d78787\a' # Red
echo -ne '\e]4;9;#df8787\a' # BoldRed
echo -ne '\e]4;2;#afd787\a' # Green
echo -ne '\e]4;10;#afdf87\a' # BoldGreen
echo -ne '\e]4;3;#f7f7af\a' # Yellow
echo -ne '\e]4;11;#ffffaf\a' # BoldYellow
echo -ne '\e]4;4;#87afd7\a' # Blue
echo -ne '\e]4;12;#87afdf\a' # BoldBlue
echo -ne '\e]4;5;#d7afd7\a' # Magenta
echo -ne '\e]4;13;#dfafdf\a' # BoldMagenta
echo -ne '\e]4;6;#afd7d7\a' # Cyan
echo -ne '\e]4;14;#afdfdf\a' # BoldCyan
echo -ne '\e]4;7;#e6e6e6\a' # White
echo -ne '\e]4;15;#eeeeee\a' # BoldWhite
@waynema02
Copy link

Nice work. Using it on all my mintty. Thanks!

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