From ac4673f870390068d5b2f857faad848912913d1c Mon Sep 17 00:00:00 2001 From: Richard Acayan Date: Fri, 20 Jun 2025 22:31:07 -0400 Subject: [PATCH] core: config: revert change in default colors from !7 In !7, the default colors had their red and blue channels swapped. There doesn't seem to be a stated (or inferrable) reason, so revert the color change back. --- src/core/config.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/config.rs b/src/core/config.rs index f7f4a40..f0b5561 100644 --- a/src/core/config.rs +++ b/src/core/config.rs @@ -30,10 +30,10 @@ impl Default for KeyboardColors { Self { background: RGB::new(0, 0, 0).into(), keycap: RGB::new(0, 0, 0).into(), - keycap_pressed: RGB::new(51,51,51).into(), + keycap_pressed: RGB::new(51, 51, 51).into(), label: RGB::new(255, 255, 255).into(), - label_locked: RGB::new(25, 255, 0).into(), - label_pressed: RGB::new(255, 153, 0).into(), + label_locked: RGB::new(0, 255, 25).into(), + label_pressed: RGB::new(0, 153, 255).into(), sublabel: RGB::new(178, 178, 178).into(), } }