From 45860204dd97a9f8e47399c1e0c88bb4f795c413 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Sun, 20 Jan 2019 09:11:36 +0100 Subject: [PATCH] ActiveModColor: Dim the lights a little Bright white is both distracting, and draws too much power. Dim it, and the red sticky default too. Signed-off-by: Gergely Nagy --- src/kaleidoscope/plugin/LED-ActiveModColor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/kaleidoscope/plugin/LED-ActiveModColor.cpp b/src/kaleidoscope/plugin/LED-ActiveModColor.cpp index 9f8b5e1b..ac255201 100644 --- a/src/kaleidoscope/plugin/LED-ActiveModColor.cpp +++ b/src/kaleidoscope/plugin/LED-ActiveModColor.cpp @@ -26,10 +26,10 @@ uint8_t ActiveModColorEffect::mod_keys_[MAX_MODS_PER_LAYER]; uint8_t ActiveModColorEffect::mod_key_count_; cRGB ActiveModColorEffect::highlight_color = (cRGB) { - 0xff, 0xff, 0xff + 160, 160, 160 }; -cRGB ActiveModColorEffect::sticky_color = CRGB(0xff, 0x00, 0x00); +cRGB ActiveModColorEffect::sticky_color = CRGB(160, 0, 0); EventHandlerResult ActiveModColorEffect::onLayerChange() { if (!Kaleidoscope.has_leds)