Changed the running status's color to light blue.
Yellow wasn't standing out well against a white background.
This commit is contained in:
parent
e9bc1c73c1
commit
ca1a5ad01a
3 changed files with 3 additions and 2 deletions
|
|
@ -34,7 +34,7 @@
|
|||
│ [0m[38;2;0;255;0m[48;2;0;0;0m [0m[38;2;255;255;255m[48;2;0;0;0m Ok │
|
||||
│ [0m[38;2;255;0;0m[48;2;0;0;0m [0m[38;2;255;255;255m[48;2;0;0;0m Problem │
|
||||
│ [0m[38;2;100;100;100m[48;2;0;0;0m [0m[38;2;255;255;255m[48;2;0;0;0m Not applicable │
|
||||
│ [0m[38;2;255;255;0m[48;2;0;0;0m [0m[38;2;255;255;255m[48;2;0;0;0m Running │
|
||||
│ [0m[38;2;90;90;255m[48;2;0;0;0m [0m[38;2;255;255;255m[48;2;0;0;0m Running │
|
||||
│ . Pending │
|
||||
│[0m[38;2;255;255;255m[48;2;100;100;100m [0m[38;2;255;255;255m[48;2;0;0;0m │
|
||||
└──────────────────────────────────────┘[0m
|
||||
|
|
@ -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:
|
||||
|
|
|
|||
2
tools.py
2
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 = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue