diff --git a/tests/golden-files/help b/tests/golden-files/help index 0ffe8c2..cb8d541 100644 --- a/tests/golden-files/help +++ b/tests/golden-files/help @@ -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 │ diff --git a/vigil/tools.py b/vigil/tools.py index 6ad4c8c..e9ce3a3 100644 --- a/vigil/tools.py +++ b/vigil/tools.py @@ -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}