Tweaked status colours.
- The normal and okay statuses were too similar.
This commit is contained in:
parent
4c58d377e2
commit
6a0bacc805
3 changed files with 3 additions and 2 deletions
|
|
@ -26,7 +26,7 @@
|
|||
│ (B[m[38;2;0;255;0m[48;2;0;0;0mf(B[m[38;2;255;255;255m[48;2;0;0;0m - Resize the focused pane to the full screen. (toggle) │
|
||||
│ │
|
||||
│Statuses: │
|
||||
│ (B[m[38;2;255;255;255m[48;2;150;150;150m (B[m[38;2;255;255;255m[48;2;0;0;0m Normal │
|
||||
│ (B[m[38;2;255;255;255m[48;2;200;200;200m (B[m[38;2;255;255;255m[48;2;0;0;0m Normal │
|
||||
│ (B[m[38;2;255;255;255m[48;2;0;159;107m (B[m[38;2;255;255;255m[48;2;0;0;0m Ok │
|
||||
│ (B[m[38;2;255;255;255m[48;2;196;2;51m (B[m[38;2;255;255;255m[48;2;0;0;0m Problem │
|
||||
│ (B[m[38;2;255;255;255m[48;2;100;100;100m (B[m[38;2;255;255;255m[48;2;0;0;0m Not applicable │
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue