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:
parent
c911577eb8
commit
ac4673f870
1 changed files with 3 additions and 3 deletions
|
|
@ -30,10 +30,10 @@ impl Default for KeyboardColors {
|
||||||
Self {
|
Self {
|
||||||
background: RGB::new(0, 0, 0).into(),
|
background: RGB::new(0, 0, 0).into(),
|
||||||
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(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue