Tweaked the new status colours.

This commit is contained in:
Andrew Hamilton 2018-06-16 10:25:43 +10:00
parent 293f013236
commit 69e900fdd1
2 changed files with 2 additions and 2 deletions

View file

@ -29,7 +29,7 @@
(B (B Normal │
(B (B Ok │
(B (B Problem │
(B (B Not applicable │
(B (B Not applicable │
(B (B Running │
(B (B Paused │
(B (B Timed out │

View file

@ -56,7 +56,7 @@ class Status(enum.IntEnum):
_STATUS_COLORS = {Status.ok: termstr.Color.green,
Status.problem: termstr.Color.dark_red,
Status.normal: termstr.Color.grey_150,
Status.not_applicable: termstr.Color.brown,
Status.not_applicable: termstr.Color.grey_100,
Status.running: termstr.Color.light_blue,
Status.paused: termstr.Color.yellow,
Status.timed_out: termstr.Color.purple}