Skip to content

Instantly share code, notes, and snippets.

@greduan
Created September 4, 2014 01:57
Show Gist options
  • Save greduan/6e086b7636d5ee6bcfd4 to your computer and use it in GitHub Desktop.
Save greduan/6e086b7636d5ee6bcfd4 to your computer and use it in GitHub Desktop.
Outputs the terminal 16 colors in the foreground (and background)
#!/bin/bash
# This program is free software. It comes without any warranty, to
# the extent permitted by applicable law. You can redistribute it
# and/or modify it under the terms of the Do What The Fuck You Want
# To Public License, Version 2, as published by Sam Hocevar. See
# http://sam.zoy.org/wtfpl/COPYING for more details.
# This program outputs the 16 colors in the foreground (and background) so that
# you can keep checking those colors when developing a theme.
# Background
#for clbg in {40..47} {100..107} 49 ; do
# Foreground
for clfg in {30..37} {90..97} 39 ; do
# Formatting
#for attr in 0 1 2 4 5 7 ; do
# Print the result
echo -en "[${clfg}m ^[${clfg}m "
#done
echo # Newline
done
#done
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment