From 8107a79b391d94db7fbf44e2529c650fe3adaf27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sun, 24 Apr 2022 21:00:26 +0200 Subject: feat: change shade of "gray" color in eye-catchers (#14309) This commit changes "gray" color for eye-catchers to use Ansi(245) color. --- runtime/colors.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/colors.rs') diff --git a/runtime/colors.rs b/runtime/colors.rs index 196e522e4..f9d48fe53 100644 --- a/runtime/colors.rs +++ b/runtime/colors.rs @@ -114,7 +114,7 @@ pub fn bold>(s: S) -> impl fmt::Display { pub fn gray>(s: S) -> impl fmt::Display { let mut style_spec = ColorSpec::new(); - style_spec.set_fg(Some(Ansi256(8))); + style_spec.set_fg(Some(Ansi256(245))); style(s, style_spec) } -- cgit v1.2.3