Created
January 12, 2016 04:40
-
-
Save mr-daydream/6f86f5483eaea40a19be to your computer and use it in GitHub Desktop.
256 color code outputter (for tmux and whatnot)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#found here: http://superuser.com/questions/285381/how-does-the-tmux-color-palette-work | |
#Re-spelled "color" the 'Murican way | |
for i in {0..255} ; do | |
printf "\x1b[38;5;${i}mcolor${i}\n" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment