colors
This commit is contained in:
parent
e5a46eef90
commit
c0cbdcf421
1 changed files with 14 additions and 9 deletions
|
@ -17,9 +17,11 @@ bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
|
||||||
// layer rgb
|
// layer rgb
|
||||||
for (uint8_t i = led_min; i < led_max; i++) {
|
for (uint8_t i = led_min; i < led_max; i++) {
|
||||||
switch(get_highest_layer(layer_state|default_layer_state)) {
|
switch(get_highest_layer(layer_state|default_layer_state)) {
|
||||||
|
//base
|
||||||
case 0:
|
case 0:
|
||||||
rgblight_sethsv(4, 75, 150); // warmwhite (werte = hue, saturation, value)
|
rgblight_sethsv(4, 75, 150); // warmwhite (werte = hue, saturation, value)
|
||||||
break;
|
break;
|
||||||
|
// num
|
||||||
case 1:
|
case 1:
|
||||||
// <led-index> {siehe ../../skeletyl.c) <rgb-wert>
|
// <led-index> {siehe ../../skeletyl.c) <rgb-wert>
|
||||||
// color thumbs
|
// color thumbs
|
||||||
|
@ -27,20 +29,12 @@ bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
|
||||||
rgb_matrix_set_color(34, 255, 165, 0); // orange
|
rgb_matrix_set_color(34, 255, 165, 0); // orange
|
||||||
rgb_matrix_set_color(33, 255, 165, 0); // orange
|
rgb_matrix_set_color(33, 255, 165, 0); // orange
|
||||||
break;
|
break;
|
||||||
|
// sym
|
||||||
case 2:
|
case 2:
|
||||||
// color thumbs
|
// color thumbs
|
||||||
rgb_matrix_set_color(15, 0, 90, 255); // blue
|
rgb_matrix_set_color(15, 0, 90, 255); // blue
|
||||||
rgb_matrix_set_color(16, 0, 90, 255); // blue
|
rgb_matrix_set_color(16, 0, 90, 255); // blue
|
||||||
rgb_matrix_set_color(17, 0, 90, 255); // blue
|
rgb_matrix_set_color(17, 0, 90, 255); // blue
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
// color 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
|
|
||||||
// color pairs
|
// color pairs
|
||||||
// ´`
|
// ´`
|
||||||
rgb_matrix_set_color(5, 20, 214, 22); // 50 shades of green
|
rgb_matrix_set_color(5, 20, 214, 22); // 50 shades of green
|
||||||
|
@ -61,6 +55,17 @@ bool rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
|
||||||
rgb_matrix_set_color(14, 235, 56, 19); // 50 shades of red
|
rgb_matrix_set_color(14, 235, 56, 19); // 50 shades of red
|
||||||
rgb_matrix_set_color(32, 235, 56, 19); // 50 shades of red
|
rgb_matrix_set_color(32, 235, 56, 19); // 50 shades of red
|
||||||
break;
|
break;
|
||||||
|
// mov
|
||||||
|
case 3:
|
||||||
|
// color 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
|
||||||
|
break;
|
||||||
|
// media
|
||||||
case 4:
|
case 4:
|
||||||
// color thumbs
|
// color thumbs
|
||||||
rgb_matrix_set_color(35, 255, 241, 21); // yellow
|
rgb_matrix_set_color(35, 255, 241, 21); // yellow
|
||||||
|
|
Loading…
Reference in a new issue