dotfiles/dotfiles/bin/scripts/colortest

7 lines
171 B
Bash
Executable file

#!/bin/sh
for i in {0..255} ; do
printf "\x1b[38;5;${i}m%3d " "${i}"
if (( $i == 15 )) || (( $i > 15 )) && (( ($i-15) % 12 == 0 )); then
echo;
fi
done