Skip to content

Commit

Permalink
Update variables.sh: use underline instead of bold
Browse files Browse the repository at this point in the history
Depending on user options, bold may turn characters lighter, not darker.
  • Loading branch information
EricClaeys authored Oct 20, 2024
1 parent 9656ed2 commit 38d1f76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variables.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ if [[ -z "${ALLSKY_VARIABLE_SET}" ]]; then
if tty --silent ; then
ON_TTY="true"
DIALOG_RED="\Z1"; DIALOG_NORMAL="\Zn"
DIALOG_BOLD="\Zb"
DIALOG_UNDERLINE="\Zu"
GREEN="\033[0;32m"; wOK="${GREEN}"
YELLOW="\033[0;33m"; wWARNING="${YELLOW}"
RED="\033[0;31m"; wERROR="${RED}"
Expand All @@ -30,7 +30,7 @@ if [[ -z "${ALLSKY_VARIABLE_SET}" ]]; then
else
ON_TTY="false"
DIALOG_RED=""; DIALOG_NORMAL=""
DIALOG_BOLD=""
DIALOG_UNDERLINE=""
GREEN=""; wOK="<span style='color: green'>"
YELLOW=""; wWARNING="<span style='color: #FF9800'>"
RED=""; wERROR="<span style='color: red'>"
Expand Down

0 comments on commit 38d1f76

Please sign in to comment.