aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Grote2026-02-23 09:55:11 +0100
committerMichael Grote2026-02-23 09:55:11 +0100
commitef6417b97792c8c17d2f7d21881c4b3c62510a00 (patch)
tree58b00e280b906411331d83e7485320de188552fb
parent8b07bfb3641004b6507910d56926dc0999f7e6fe (diff)
fix(skeletyl): fix color syntax
-rw-r--r--keyboards/bastardkb/skeletyl/keymaps/quotengrote/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/bastardkb/skeletyl/keymaps/quotengrote/keymap.c b/keyboards/bastardkb/skeletyl/keymaps/quotengrote/keymap.c
index 3e6f2881c0..93a2efab3c 100644
--- a/keyboards/bastardkb/skeletyl/keymaps/quotengrote/keymap.c
+++ b/keyboards/bastardkb/skeletyl/keymaps/quotengrote/keymap.c
@@ -23,7 +23,7 @@ bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
uint8_t mods = get_mods() | get_weak_mods() | get_oneshot_mods();
if ((mods) & MOD_MASK_SHIFT ) {
// "Shift"-Color
- rgb_matrix_set_color_all(rgb(224, 224, 224)); // another white
+ rgb_matrix_set_color_all(163, 163, 163); // another white
};
// layer rgb
for (uint8_t i = led_min; i < led_max; i++) {