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.
This commit is contained in:
Richard Acayan 2025-06-20 22:31:07 -04:00
parent c911577eb8
commit ac4673f870
No known key found for this signature in database
GPG key ID: 0346F4894879DB73

View file

@ -32,8 +32,8 @@ impl Default for KeyboardColors {
keycap: 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: RGB::new(255, 255, 255).into(),
label_locked: RGB::new(25, 255, 0).into(), label_locked: RGB::new(0, 255, 25).into(),
label_pressed: RGB::new(255, 153, 0).into(), label_pressed: RGB::new(0, 153, 255).into(),
sublabel: RGB::new(178, 178, 178).into(), sublabel: RGB::new(178, 178, 178).into(),
} }
} }