colortest: Remove bold colors, add light ones

This commit is contained in:
Salt 2020-10-08 02:53:40 -05:00
parent 2c3d0f307b
commit d0846d2b5b

View File

@ -40,12 +40,10 @@ done
println println
# Content # Content
for (( fg=30; fg <=37; fg++ )); do for fg in $(seq 30 1 37) "" $(seq 90 1 97); do
for (( bold=0; bold<=1; bold++ )); do [ -z "$fg" ] && println && continue
headerstring="${fg}m" headerstring="${fg}m"
[ "$bold" == "1" ] && headerstring="$bold;$headerstring" printf "%8s$spacer" "$headerstring"
printf "%8s" "$headerstring"
printf "$spacer"
# No background # No background
printc $fg 0 printc $fg 0
printf "$spacer" printf "$spacer"
@ -56,6 +54,5 @@ for (( fg=30; fg <=37; fg++ )); do
done done
println println
done done
done
println println