Skip to content

Commit

Permalink
Fix #214: change WARN color in progress to yellow
Browse files Browse the repository at this point in the history
Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
  • Loading branch information
troglobit committed Feb 1, 2022
1 parent ebdc10d commit f930953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static pstyle_t progress_style = PROGRESS_DEFAULT;
#define STATUS_CLASS { \
CHOOSE(" OK ", " OK ", "\e[1;32m"), /* Green */ \
CHOOSE("FAIL", "FAIL", "\e[1;31m"), /* Red */ \
CHOOSE("WARN", "WARN", "\e[1;31m"), /* Red */ \
CHOOSE("WARN", "WARN", "\e[1;33m"), /* Yellow */ \
CHOOSE(" \\/ ", " ⋯ ", "\e[1;33m"), /* Yellow */ \
}

Expand Down

0 comments on commit f930953

Please sign in to comment.