From a963dd73771aa025bcd5a8ce4c51d3a9e88dfe91 Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Wed, 11 Aug 2021 14:25:37 +1000 Subject: [PATCH] Make running status color stand out. - Lime stands out better than blue on a green background. --- eris/tools.py | 2 +- tests/golden-files/help | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eris/tools.py b/eris/tools.py index 9cf3364..fe21752 100755 --- a/eris/tools.py +++ b/eris/tools.py @@ -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 = [ diff --git a/tests/golden-files/help b/tests/golden-files/help index 5caad0e..5c81c1e 100644 --- a/tests/golden-files/help +++ b/tests/golden-files/help @@ -29,7 +29,7 @@ │   Ok │ │   Problem │ │   Not applicable │ -│   Running │ +│   Running │ │   Timed out │ │ . Pending │ │   Error │