ansi-colors.sh: Add dim colors

Signed-off-by: Mohammad AlSaleh <CE.Mohammad.AlSaleh@gmail.com>
This commit is contained in:
Mohammad AlSaleh 2024-01-13 07:12:01 +03:00 committed by Jeremy Soller
parent 60b55a076d
commit 7a707c20aa

View file

@ -11,14 +11,31 @@ printf "\n"
for foreground in $(seq 0 15)
do
# Add each dim color right above corresponding normal color for easier visual comparisons
if ((foreground < 8))
then
printf "d%d:" "${foreground}"
printf "\x1B[2;$((foreground+30))m"
for background in $(seq 0 15)
do
printf "\x1B[48;5;${background}m"
printf " %2d " "${background}"
printf "\x1B[49m"
done
printf "\x1B[0m"
printf "\n"
fi
printf "%2d:" "${foreground}"
printf "\x1B[38;5;${foreground}m"
for background in $(seq 0 15)
do
printf "\x1B[48;5;${background}m"
printf " %2d " "${background}"
printf "\x1B[49m"
done
printf "\x1B[39m"
printf "\x1B[0m"
printf "\n"
done