skeletyl: rgb startup color, hsv instead rgb

This commit is contained in:
Michael Grote 2024-03-15 17:57:00 +01:00
parent 5e5e46e595
commit ee56df6313

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_setrgb(244, 235, 234); rgblight_sethsv(4, 75, 225);
rgblight_mode_noeeprom(RGB_MATRIX_SOLID_COLOR); rgblight_mode_noeeprom(RGB_MATRIX_SOLID_COLOR);
} }