From 36d3902504d6aa0d2bdac88c90339c902ade11b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20=C4=90or=C4=91evi=C4=87?= Date: Thu, 25 Jul 2019 21:31:40 +0200 Subject: [User] Update personal userspace and keymaps, add reactive underglow (#6410) * Update MODERN_DOLCH_RED color * Remove unused RAL_LAL tap dance * Disable Space Cadet on all boards * Rework SEND_STRING_CLEAN into CLEAN_MODS, fix DST_P_R/DST_N_A * Disable unnecessary underglow animations * Rearrange feature flags in rules.mk files * Change custom colors from structs to defines * Add some explicit initializers * Add MODERN_DOLCH_CYAN color * Add IS_LAYER_ON_STATE()/IS_LAYER_OFF_STATE() macros * Add led_set_keymap() template function * Change underglow color based on Caps/Fn state * Preserve val when changing underglow colors * Only trigger Fn light for Fn layer * Refactor fn_light() and caps_light() slightly * Add comments to fn_light() and caps_light() --- users/konstantin/rgb.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'users/konstantin/rgb.c') diff --git a/users/konstantin/rgb.c b/users/konstantin/rgb.c index a96cad019d..fffa250f25 100644 --- a/users/konstantin/rgb.c +++ b/users/konstantin/rgb.c @@ -20,6 +20,7 @@ const uint8_t PROGMEM RGBLED_SNAKE_INTERVALS[] = { 20, 50, 100 }; const uint8_t PROGMEM RGBLED_KNIGHT_INTERVALS[] = { 20, 50, 100 }; #endif -const HSV GODSPEED_BLUE = { .h = 198, .s = 68, .v = 255 }; -const HSV GODSPEED_YELLOW = { .h = 27, .s = 153, .v = 255 }; -const HSV MODERN_DOLCH_RED = { .h = 252, .s = 255, .v = 144 }; +const HSV godspeed_blue = { GODSPEED_BLUE }; +const HSV godspeed_yellow = { GODSPEED_YELLOW }; +const HSV modern_dolch_cyan = { MODERN_DOLCH_CYAN }; +const HSV modern_dolch_red = { MODERN_DOLCH_RED }; -- cgit v1.2.3