Default text colors now work on bright colorschemes

This commit is contained in:
Dylan 2016-03-27 21:33:11 +11:00
parent f19617cef9
commit 200faf2e1d
1 changed files with 4 additions and 4 deletions

View File

@ -2325,11 +2325,11 @@ setcolors () {
if [ "${colors[0]}" == "distro" ]; then
title_color="\033[3${1}m"
at_color="\033[37m"
underline_color="\033[37m"
at_color="\033[0m"
underline_color="\033[0m"
subtitle_color="\033[3${2}m"
colon_color="\033[37m"
info_color="\033[37m"
colon_color="\033[0m"
info_color="\033[0m"
# If the second color is white use the first for the subtitle
[ "$2" == 7 ] && subtitle_color="\033[3${1}m"