forked from mirrors/jj
cli: make hints cyan instead of blue
It's hard to read dark blue on black, at least with iTerm2's default color scheme. Cyan makes it much more readable. That's the color `cargo` uses. We could also consider coloring only the "Hint:" part like `cargo` does. For errors, `cargo` colors the "Error:" part red and uses bold/bright white for select parts of the message.
This commit is contained in:
parent
0625a26121
commit
24bc34a0e9
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
[colors]
|
||||
"error" = "red"
|
||||
"warning" = "yellow"
|
||||
"hint" = "blue"
|
||||
"hint" = "cyan"
|
||||
|
||||
"conflict_description" = "yellow"
|
||||
"conflict_description difficult" = "red"
|
||||
|
|
Loading…
Reference in a new issue