Make the problem status color stand out less.

This commit is contained in:
Andrew Hamilton 2020-04-12 23:17:45 +10:00
parent 69c957985a
commit e8a83761ff
2 changed files with 3 additions and 3 deletions

View file

@ -41,6 +41,7 @@ class Color:
white = (255, 255, 255)
red = (196, 2, 51)
green = (0, 159, 107)
dark_green = (0, 100, 0)
blue = (0, 135, 189)
lime = (0, 255, 0)
yellow = (255, 211, 0)

View file

@ -57,10 +57,11 @@ class Status(enum.IntEnum):
_STATUS_COLORS = {Status.ok: termstr.Color.green,
Status.problem: termstr.Color.red,
Status.problem: termstr.Color.dark_green,
Status.normal: termstr.Color.grey_200,
Status.not_applicable: termstr.Color.grey_100,
Status.running: termstr.Color.blue,
Status.error: termstr.Color.red,
Status.timed_out: termstr.Color.purple}
STATUS_MEANINGS = [
(Status.normal, "Normal"), (Status.ok, "Ok"),
@ -71,8 +72,6 @@ STATUS_MEANINGS = [
STATUS_TO_TERMSTR = {
status: termstr.TermStr(" ", termstr.CharStyle(bg_color=color))
for status, color in _STATUS_COLORS.items()}
STATUS_TO_TERMSTR[Status.error] = termstr.TermStr(
"E", termstr.CharStyle(bg_color=termstr.Color.red))
STATUS_TO_TERMSTR[Status.pending] = "."