summaryrefslogtreecommitdiff
path: root/cli/ansi.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/ansi.rs')
-rw-r--r--cli/ansi.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/cli/ansi.rs b/cli/ansi.rs
index b9e9fe123..32936ace0 100644
--- a/cli/ansi.rs
+++ b/cli/ansi.rs
@@ -79,14 +79,6 @@ pub fn red(s: String) -> impl fmt::Display {
style.paint(s)
}
-pub fn grey(s: String) -> impl fmt::Display {
- let mut style = Style::new();
- if use_color() {
- style = style.fg(Fixed(8));
- }
- style.paint(s)
-}
-
pub fn bold(s: String) -> impl fmt::Display {
let mut style = Style::new();
if use_color() {