From a6852c4bc93ca4f5b9ba0de9f920b32008061b4e Mon Sep 17 00:00:00 2001 From: rascul Date: Wed, 14 Jan 2026 22:54:33 -0600 Subject: [PATCH] remove extra bits from the ansi codes, they are not needed and do more than what is expected --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 4575944..9f37aaa 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -56,7 +56,7 @@ impl Color { Self::Cyan => "\x1b[36m", Self::White => "\x1b[37m", Self::BgBlack => "\x1b[40m", - Self::BgRed => "\x1b[0;41m", + Self::BgRed => "\x1b[41m", Self::BgGreen => "\x1b[42m", Self::BgYellow => "\x1b[43m", Self::BgBlue => "\x1b[44m",