Make the placeholder dots darker.
- Makes the white cursor stand out.
This commit is contained in:
parent
573353896c
commit
2b0fd6b724
2 changed files with 2 additions and 2 deletions
|
|
@ -71,7 +71,7 @@ STATUS_MEANINGS = [
|
|||
STATUS_TO_TERMSTR = {
|
||||
status: termstr.TermStr(" ", termstr.CharStyle(bg_color=color))
|
||||
for status, color in _STATUS_COLORS.items()}
|
||||
STATUS_TO_TERMSTR[Status.pending] = "."
|
||||
STATUS_TO_TERMSTR[Status.pending] = termstr.TermStr(".").fg_color(termstr.Color.grey_100)
|
||||
|
||||
|
||||
def get_ls_color_codes():
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
│ [m[38;2;255;255;255m[48;2;50;50;50m [m[38;2;255;255;255m[48;2;0;0;0m Not applicable │
|
||||
│ [m[38;2;255;255;255m[48;2;0;135;189m [m[38;2;255;255;255m[48;2;0;0;0m Running │
|
||||
│ [m[38;2;255;255;255m[48;2;200;0;200m [m[38;2;255;255;255m[48;2;0;0;0m Timed out │
|
||||
│ . Pending │
|
||||
│ [m[38;2;100;100;100m[48;2;0;0;0m.[m[38;2;255;255;255m[48;2;0;0;0m Pending │
|
||||
│ [m[38;2;255;255;255m[48;2;196;2;51m [m[38;2;255;255;255m[48;2;0;0;0m Error │
|
||||
│ │
|
||||
│ │
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue