From 96dbb44f267ac99d72e8953e43520c6ff2da6b3e Mon Sep 17 00:00:00 2001 From: Austin Schey Date: Mon, 4 Aug 2025 19:42:16 -0700 Subject: [PATCH] fix(crossterm): fix color conversion --- crates/anstyle-crossterm/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/anstyle-crossterm/src/lib.rs b/crates/anstyle-crossterm/src/lib.rs index d1db2bca..08bccbbe 100644 --- a/crates/anstyle-crossterm/src/lib.rs +++ b/crates/anstyle-crossterm/src/lib.rs @@ -69,7 +69,7 @@ fn ansi_to_ansi_color(color: anstyle::AnsiColor) -> crossterm::style::Color { anstyle::AnsiColor::BrightRed => crossterm::style::Color::Red, anstyle::AnsiColor::BrightGreen => crossterm::style::Color::Green, anstyle::AnsiColor::BrightYellow => crossterm::style::Color::Yellow, - anstyle::AnsiColor::BrightBlue => crossterm::style::Color::Black, + anstyle::AnsiColor::BrightBlue => crossterm::style::Color::Blue, anstyle::AnsiColor::BrightMagenta => crossterm::style::Color::Magenta, anstyle::AnsiColor::BrightCyan => crossterm::style::Color::Cyan, anstyle::AnsiColor::BrightWhite => crossterm::style::Color::White,