ansi-colors.sh: Add dim colors
Signed-off-by: Mohammad AlSaleh <CE.Mohammad.AlSaleh@gmail.com>
This commit is contained in:
parent
60b55a076d
commit
7a707c20aa
1 changed files with 18 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue