Skip to content

Commit 96dbb44

Browse files
committed
fix(crossterm): fix color conversion
1 parent e4e2347 commit 96dbb44

File tree

1 file changed

+1
-1
lines changed
  • crates/anstyle-crossterm/src

1 file changed

+1
-1
lines changed

crates/anstyle-crossterm/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ fn ansi_to_ansi_color(color: anstyle::AnsiColor) -> crossterm::style::Color {
6969
anstyle::AnsiColor::BrightRed => crossterm::style::Color::Red,
7070
anstyle::AnsiColor::BrightGreen => crossterm::style::Color::Green,
7171
anstyle::AnsiColor::BrightYellow => crossterm::style::Color::Yellow,
72-
anstyle::AnsiColor::BrightBlue => crossterm::style::Color::Black,
72+
anstyle::AnsiColor::BrightBlue => crossterm::style::Color::Blue,
7373
anstyle::AnsiColor::BrightMagenta => crossterm::style::Color::Magenta,
7474
anstyle::AnsiColor::BrightCyan => crossterm::style::Color::Cyan,
7575
anstyle::AnsiColor::BrightWhite => crossterm::style::Color::White,

0 commit comments

Comments
 (0)