From: Michael Tremer Date: Fri, 2 Sep 2016 11:16:26 +0000 (+0200) Subject: Make headlines readable on black background X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9d5c07a08eb5f03f1de0a3c6f5b445799e81b445;p=people%2Fjschlag%2Fnetwork.git Make headlines readable on black background Signed-off-by: Michael Tremer --- diff --git a/src/functions/functions.cli b/src/functions/functions.cli index 15b5efa..25d0b2a 100644 --- a/src/functions/functions.cli +++ b/src/functions/functions.cli @@ -250,7 +250,7 @@ cli_headline() { local ident=$(cli_ident ${level}) local out - printf -v out "${ident}${CLR_BLACK_B}${format}${CLR_RESET}\n" "$@" + printf -v out "${ident}${CLR_WHITE_B}${format}${CLR_RESET}\n" "$@" printf "${out}" }