diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-04-24 21:00:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-24 21:00:26 +0200 |
commit | 8107a79b391d94db7fbf44e2529c650fe3adaf27 (patch) | |
tree | 2f90f31cb2aa51cd2ac28f8bb4e68fd1a146222e | |
parent | e9041b9edc371f2cbd41a354591b5663f2bb4c84 (diff) |
feat: change shade of "gray" color in eye-catchers (#14309)
This commit changes "gray" color for eye-catchers to use
Ansi(245) color.
-rw-r--r-- | runtime/colors.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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: AsRef<str>>(s: S) -> impl fmt::Display { pub fn gray<S: AsRef<str>>(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) } |