diff options
author | Konstantin Đorđević <vomindoraan@gmail.com> | 2019-02-18 03:16:21 +0100 |
---|---|---|
committer | Konstantin Đorđević <vomindoraan@gmail.com> | 2019-03-02 15:15:58 +0100 |
commit | fbe2eba4729a1d7b00b76243e146b5324d65976b (patch) | |
tree | 6ae5143e0f35530ce285d2312d43b4b81201842c /users/konstantin/rgb.c | |
parent | de2e03650bd4d6056513991d4481679e246667bb (diff) | |
download | qmk_firmware-fbe2eba4729a1d7b00b76243e146b5324d65976b.tar.gz |
Add GODSPEED_YELLOW color
Diffstat (limited to 'users/konstantin/rgb.c')
-rw-r--r-- | users/konstantin/rgb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/users/konstantin/rgb.c b/users/konstantin/rgb.c index b69123be0..37b1ab3d5 100644 --- a/users/konstantin/rgb.c +++ b/users/konstantin/rgb.c @@ -1,3 +1,4 @@ #include "rgb.h" -const hsv_t GODSPEED_BLUE = { .h = 300, .s = 68, .v = RGBLIGHT_LIMIT_VAL }; +const hsv_t GODSPEED_BLUE = { .h = 300, .s = 68, .v = RGBLIGHT_LIMIT_VAL }; +const hsv_t GODSPEED_YELLOW = { .h = 35, .s = 165, .v = RGBLIGHT_LIMIT_VAL }; |