Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Nice terminal colours
ForegroundColour=214,205,199
BackgroundColour=44,46,48
CursorColour=129,181,172
Black=0,0,0
BoldBlack=116,102,95
Red=219,37,29
BoldRed=243,145,28
Green=20,153,75
BoldGreen=189,214,61
Yellow=254,210,77
BoldYellow=254,240,39
Blue=0,127,192
BoldBlue=93,205,252
Magenta=127,59,135
BoldMagenta=231,77,169
Cyan=84,126,119
BoldCyan=145,220,206
White=214,205,199
BoldWhite=253,254,253
@katef
Copy link

katef commented Sep 5, 2022

in hex:

; cat /tmp/nettie | tr = , | awk -F, '{ printf "%s #%02x%02x%02x\n", $1, $2, $3, $4 }'  
ForegroundColour #d6cdc7
BackgroundColour #2c2e30
CursorColour #81b5ac
Black #000000
BoldBlack #74665f
Red #db251d
BoldRed #f3911c
Green #14994b
BoldGreen #bdd63d
Yellow #fed24d
BoldYellow #fef027
Blue #007fc0
BoldBlue #5dcdfc
Magenta #7f3b87
BoldMagenta #e74da9
Cyan #547e77
BoldCyan #91dcce
White #d6cdc7
BoldWhite #fdfefd

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