feat: change shade of "gray" color in eye-catchers (#14309)

This commit changes "gray" color for eye-catchers to use 
Ansi(245) color.
This commit is contained in:
Bartek Iwańczuk 2022-04-24 21:00:26 +02:00 committed by crowlkats
parent bf5eea0cc6
commit 37e534dac5
No known key found for this signature in database
GPG Key ID: A82C9D461FC483E8

View File

@ -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)
}