From ca1a5ad01adadf0f0cb993e77a58cf2e45577846 Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Sun, 24 Jan 2016 21:07:43 +0000 Subject: [PATCH] Changed the running status's color to light blue. Yellow wasn't standing out well against a white background. --- golden-files/help | 2 +- termstr.py | 1 + tools.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/golden-files/help b/golden-files/help index f7ebce7..67354a4 100644 --- a/golden-files/help +++ b/golden-files/help @@ -34,7 +34,7 @@ │   Ok │ │   Problem │ │   Not applicable │ -│   Running │ +│   Running │ │ . Pending │ │  │ └──────────────────────────────────────┘ \ No newline at end of file diff --git a/termstr.py b/termstr.py index 6d9b79c..30a86ea 100644 --- a/termstr.py +++ b/termstr.py @@ -28,6 +28,7 @@ class Color: yellow = (255, 255, 0) grey_50 = (50, 50, 50) grey_100 = (100, 100, 100) + light_blue = (90, 90, 255) class CharStyle: diff --git a/tools.py b/tools.py index e7e1d22..dc25bc2 100644 --- a/tools.py +++ b/tools.py @@ -47,7 +47,7 @@ _STATUS_COLORS = [(Status.ok, termstr.Color.green), (Status.problem, termstr.Color.red), (Status.normal, termstr.Color.white), (Status.not_applicable, termstr.Color.grey_100), - (Status.running, termstr.Color.yellow)] + (Status.running, termstr.Color.light_blue)] STATUS_MEANINGS = [