skeletyl: rgb set startup color to warm white

This commit is contained in:
Michael Grote 2024-03-15 17:55:50 +01:00
parent 96eb03dec0
commit 5e5e46e595

View file

@ -4,7 +4,7 @@
// rgb // rgb
void keyboard_post_init_user(void) { void keyboard_post_init_user(void) {
rgblight_enable_noeeprom(); // Enables RGB, without saving settings rgblight_enable_noeeprom(); // Enables RGB, without saving settings
rgblight_sethsv_noeeprom(HSV_WHITE); rgblight_setrgb(244, 235, 234);
rgblight_mode_noeeprom(RGB_MATRIX_SOLID_COLOR); rgblight_mode_noeeprom(RGB_MATRIX_SOLID_COLOR);
} }