From 59496a70b60a2f4ae9e45ddc00cb2f2662dc4156 Mon Sep 17 00:00:00 2001 From: epic-64 Date: Mon, 1 Dec 2025 00:00:00 +0100 Subject: [PATCH] update color for bits::eight --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index 4753d43..140e98d 100644 --- a/src/app.rs +++ b/src/app.rs @@ -52,7 +52,7 @@ pub fn get_mode_color(bits: &Bits) -> Color { Bits::FourShift4 => Color::Rgb(100, 255, 180), // cyan Bits::FourShift8 => Color::Rgb(100, 220, 255), // light blue Bits::FourShift12 => Color::Rgb(100, 180, 255), // blue - Bits::Eight => Color::Rgb(125, 120, 255), // royal blue + Bits::Eight => Color::Rgb(150, 120, 255), // royal blue Bits::Twelve => Color::Rgb(200, 100, 255), // purple Bits::Sixteen => Color::Rgb(255, 80, 150), // pink }