Color ascii logos using the forground color too

This commit is contained in:
Dylan 2016-03-29 19:54:09 +11:00
parent 1fd6cd5b00
commit c9bb5988da
1 changed files with 12 additions and 4 deletions

View File

@ -2318,13 +2318,21 @@ setcolors () {
c5="\033[0m\033[3${5}m" c5="\033[0m\033[3${5}m"
c6="\033[0m\033[3${6}m" c6="\033[0m\033[3${6}m"
# Fix for white on white
[ "$1" == 7 ] && c1="\033[0m"
[ "$2" == 7 ] && c2="\033[0m"
[ "$3" == 7 ] && c3="\033[0m"
[ "$4" == 7 ] && c4="\033[0m"
[ "$5" == 7 ] && c5="\033[0m"
[ "$6" == 7 ] && c6="\033[0m"
if [ "${colors[0]}" == "distro" ]; then if [ "${colors[0]}" == "distro" ]; then
title_color="\033[0m\033[3${1}m" title_color="\033[0m\033[3${1}m"
at_color="\033[0m\033[0m" at_color="\033[0m"
underline_color="\033[0m\033[0m" underline_color="\033[0m"
subtitle_color="\033[0m\033[3${2}m" subtitle_color="\033[0m\033[3${2}m"
colon_color="\033[0m\033[0m" colon_color="\033[0m"
info_color="\033[0m\033[0m" info_color="\033[0m"
# If the second color is white use the first for the subtitle # If the second color is white use the first for the subtitle
[ "$2" == 7 ] && subtitle_color="\033[0m\033[3${1}m" [ "$2" == 7 ] && subtitle_color="\033[0m\033[3${1}m"