pair colors
This commit is contained in:
parent
6e39d2b62e
commit
79e53ba238
1 changed files with 24 additions and 1 deletions
|
@ -18,28 +18,51 @@ bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
|
|||
for (uint8_t i = led_min; i < led_max; i++) {
|
||||
switch(get_highest_layer(layer_state|default_layer_state)) {
|
||||
case 0:
|
||||
rgblight_sethsv(4, 75, 150); // warmhite (werte = hue, saturation, value)
|
||||
rgblight_sethsv(4, 75, 150); // warmwhite (werte = hue, saturation, value)
|
||||
break;
|
||||
case 1:
|
||||
// <led-index> {siehe ../../skeletyl.c) <rgb-wert>
|
||||
// Colors thumbs
|
||||
rgb_matrix_set_color(35, 255, 165, 0); // orange
|
||||
rgb_matrix_set_color(34, 255, 165, 0); // orange
|
||||
rgb_matrix_set_color(33, 255, 165, 0); // orange
|
||||
break;
|
||||
case 2:
|
||||
// Colors thumbs
|
||||
rgb_matrix_set_color(15, 0, 90, 255); // blue
|
||||
rgb_matrix_set_color(16, 0, 90, 255); // blue
|
||||
rgb_matrix_set_color(17, 0, 90, 255); // blue
|
||||
break;
|
||||
case 3:
|
||||
// Colors thumbs
|
||||
rgb_matrix_set_color(35, 4, 147, 4); // green
|
||||
rgb_matrix_set_color(34, 4, 147, 4); // green
|
||||
rgb_matrix_set_color(33, 4, 147, 4); // green
|
||||
rgb_matrix_set_color(15, 4, 147, 4); // green
|
||||
rgb_matrix_set_color(16, 4, 147, 4); // green
|
||||
rgb_matrix_set_color(17, 4, 147, 4); // green
|
||||
// Colors pairs
|
||||
// ´`
|
||||
rgb_matrix_set_color(35, 235, 95, 100); // green
|
||||
rgb_matrix_set_color(35, 235, 95, 100); // green
|
||||
// []
|
||||
rgb_matrix_set_color(35, 235, 75, 100); // green
|
||||
rgb_matrix_set_color(35, 235, 75, 100); // green
|
||||
// ()
|
||||
rgb_matrix_set_color(35, 235, 55, 100); // green
|
||||
rgb_matrix_set_color(35, 235, 55, 100); // green
|
||||
// {}
|
||||
rgb_matrix_set_color(35, 215, 95, 100); // green
|
||||
rgb_matrix_set_color(35, 215, 95, 100); // green
|
||||
// /\
|
||||
rgb_matrix_set_color(35, 215, 75, 100); // green
|
||||
rgb_matrix_set_color(35, 215, 75, 100); // green
|
||||
// <>
|
||||
rgb_matrix_set_color(35, 215, 55, 100); // green
|
||||
rgb_matrix_set_color(35, 215, 55, 100); // green
|
||||
break;
|
||||
case 4:
|
||||
// Colors thumbs
|
||||
rgb_matrix_set_color(35, 255, 241, 21); // yellow
|
||||
rgb_matrix_set_color(34, 255, 241, 21); // yellow
|
||||
rgb_matrix_set_color(33, 255, 241, 21); // yellow
|
||||
|
|
Loading…
Reference in a new issue