Tweaked status colours.

- The normal and okay statuses were too similar.
This commit is contained in:
Andrew Hamilton 2018-06-16 15:25:41 +10:00
parent 4c58d377e2
commit 6a0bacc805
3 changed files with 3 additions and 2 deletions

View file

@ -26,7 +26,7 @@
(Bf(B - Resize the focused pane to the full screen. (toggle) │
│ │
│Statuses: │
(B (B Normal │
(B (B Normal │
(B (B Ok │
(B (B Problem │
(B (B Not applicable │

View file

@ -46,6 +46,7 @@ class Color:
grey_50 = (50, 50, 50)
grey_100 = (100, 100, 100)
grey_150 = (150, 150, 150)
grey_200 = (200, 200, 200)
light_blue = (173, 216, 230)
purple = (200, 0, 200)
brown = (150, 75, 0)

View file

@ -55,7 +55,7 @@ class Status(enum.IntEnum):
_STATUS_COLORS = {Status.ok: termstr.Color.green,
Status.problem: termstr.Color.red,
Status.normal: termstr.Color.grey_150,
Status.normal: termstr.Color.grey_200,
Status.not_applicable: termstr.Color.grey_100,
Status.running: termstr.Color.blue,
Status.paused: termstr.Color.yellow,