aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Grote2026-02-23 12:43:30 +0100
committerMichael Grote2026-02-23 12:43:30 +0100
commit2b55dbd9523b5d7001a3120e3e5a0633b5889923 (patch)
tree37d2c0e5b2bd92c2363f21c9fbab2c1358e3ffac
parentfd62828e36c6dc0eec70414130d5dcacab333be0 (diff)
feat(skeletyl): SHIFT, dont highlight whole layer, just the keys
-rw-r--r--keyboards/bastardkb/skeletyl/keymaps/quotengrote/keymap.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/keyboards/bastardkb/skeletyl/keymaps/quotengrote/keymap.c b/keyboards/bastardkb/skeletyl/keymaps/quotengrote/keymap.c
index 62caeb1555..81d92d4fd1 100644
--- a/keyboards/bastardkb/skeletyl/keymaps/quotengrote/keymap.c
+++ b/keyboards/bastardkb/skeletyl/keymaps/quotengrote/keymap.c
@@ -23,7 +23,10 @@ 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(163, 163, 163); // another white
+ rgb_matrix_set_color(10, 235, 56, 19); // 50 shades of orange
+ rgb_matrix_set_color(11, 235, 56, 19); // 50 shades of orange
+ rgb_matrix_set_color(28, 235, 56, 19); // 50 shades of orange
+ rgb_matrix_set_color(29, 235, 56, 19); // 50 shades of orange
};
// layer rgb
for (uint8_t i = led_min; i < led_max; i++) {