From ea7d94b9a063aa0f1ddfba7de9fc823c92cb5fbf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Apr 2026 00:12:14 +0000 Subject: [PATCH] Clarify RGB color comments for consistency Agent-Logs-Url: https://github.com/timfee/qmk_userspace/sessions/cc846d9d-7039-4650-9167-e05fa242c89f Co-authored-by: timfee <3246342+timfee@users.noreply.github.com> --- users/timfee/timfee.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/users/timfee/timfee.c b/users/timfee/timfee.c index 1c04adc7..a15513aa 100644 --- a/users/timfee/timfee.c +++ b/users/timfee/timfee.c @@ -481,26 +481,26 @@ bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) { switch (layer) { case 1: if (led_in_set(i, L1_SYMBOL_LEDS, sizeof(L1_SYMBOL_LEDS))) { - rgb_matrix_set_color(i, 0, 255, 0); // bright green + rgb_matrix_set_color(i, 0, 255, 0); // bright green (symbols) } else if (led_in_set(i, L1_NUMBER_LEDS, sizeof(L1_NUMBER_LEDS))) { - rgb_matrix_set_color(i, 255, 0, 0); // bright red + rgb_matrix_set_color(i, 255, 0, 0); // bright red (numbers) } else { - rgb_matrix_set_color(i, 200, 0, 0); // base red + rgb_matrix_set_color(i, 200, 0, 0); // dim red (inactive) } break; case 2: if (led_in_set(i, L2_FKEY_LEDS, sizeof(L2_FKEY_LEDS))) { - rgb_matrix_set_color(i, 148, 0, 211); // purple + rgb_matrix_set_color(i, 148, 0, 211); // purple (F-keys) } else if (led_in_set(i, L2_ARROW_LEDS, sizeof(L2_ARROW_LEDS))) { - rgb_matrix_set_color(i, 0, 0, 255); // bright blue + rgb_matrix_set_color(i, 0, 0, 255); // bright blue (arrows) } else { - rgb_matrix_set_color(i, 200, 0, 0); // base red + rgb_matrix_set_color(i, 200, 0, 0); // dim red (inactive) } break; default: - rgb_matrix_set_color(i, 200, 0, 0); // solid red + rgb_matrix_set_color(i, 200, 0, 0); // solid red (base layer) break; } }