Make running status color stand out.

- Lime stands out better than blue on a green background.
This commit is contained in:
Andrew Hamilton 2021-08-11 14:25:37 +10:00
parent 4ca4d3a2ba
commit a963dd7377
2 changed files with 2 additions and 2 deletions

View file

@ -57,7 +57,7 @@ class Status(enum.IntEnum):
_STATUS_COLORS = {Status.ok: termstr.Color.green,
Status.problem: termstr.Color.dark_green,
Status.not_applicable: termstr.Color.grey_80,
Status.running: termstr.Color.blue,
Status.running: termstr.Color.lime,
Status.error: termstr.Color.red,
Status.timed_out: termstr.Color.purple}
STATUS_MEANINGS = [

View file

@ -29,7 +29,7 @@
  Ok │
  Problem │
  Not applicable │
  Running │
  Running │
  Timed out │
. Pending │
  Error │