From 24bc34a0e929a8a374bb15190d9c83941b4b4128 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Fri, 3 Feb 2023 22:19:29 -0800 Subject: [PATCH] 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. --- src/config/colors.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/colors.toml b/src/config/colors.toml index 429b5a00f..cf2cbc5ef 100644 --- a/src/config/colors.toml +++ b/src/config/colors.toml @@ -1,7 +1,7 @@ [colors] "error" = "red" "warning" = "yellow" -"hint" = "blue" +"hint" = "cyan" "conflict_description" = "yellow" "conflict_description difficult" = "red"