aboutsummaryrefslogtreecommitdiff
path: root/users
diff options
context:
space:
mode:
authorKonstantin Đorđević <vomindoraan@gmail.com>2019-02-18 03:16:21 +0100
committerKonstantin Đorđević <vomindoraan@gmail.com>2019-03-02 15:15:58 +0100
commitfbe2eba4729a1d7b00b76243e146b5324d65976b (patch)
tree6ae5143e0f35530ce285d2312d43b4b81201842c /users
parentde2e03650bd4d6056513991d4481679e246667bb (diff)
downloadqmk_firmware-fbe2eba4729a1d7b00b76243e146b5324d65976b.tar.gz
qmk_firmware-fbe2eba4729a1d7b00b76243e146b5324d65976b.zip
Add GODSPEED_YELLOW color
Diffstat (limited to 'users')
-rw-r--r--users/konstantin/konstantin.c2
-rw-r--r--users/konstantin/rgb.c3
-rw-r--r--users/konstantin/rgb.h1
3 files changed, 4 insertions, 2 deletions
diff --git a/users/konstantin/konstantin.c b/users/konstantin/konstantin.c
index a8f2a5f2c..753742fa7 100644
--- a/users/konstantin/konstantin.c
+++ b/users/konstantin/konstantin.c
@@ -61,7 +61,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
61 return false; 61 return false;
62 62
63#ifdef LAYER_FN 63#ifdef LAYER_FN
64 static bool fn_lock; 64 static bool fn_lock;
65 65
66 case FN_FNLK: 66 case FN_FNLK:
67 if (record->event.pressed && record->tap.count == TAPPING_TOGGLE) { 67 if (record->event.pressed && record->tap.count == TAPPING_TOGGLE) {
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 @@
1#include "rgb.h" 1#include "rgb.h"
2 2
3const hsv_t GODSPEED_BLUE = { .h = 300, .s = 68, .v = RGBLIGHT_LIMIT_VAL }; 3const hsv_t GODSPEED_BLUE = { .h = 300, .s = 68, .v = RGBLIGHT_LIMIT_VAL };
4const hsv_t GODSPEED_YELLOW = { .h = 35, .s = 165, .v = RGBLIGHT_LIMIT_VAL };
diff --git a/users/konstantin/rgb.h b/users/konstantin/rgb.h
index e296cf12e..53b5821b0 100644
--- a/users/konstantin/rgb.h
+++ b/users/konstantin/rgb.h
@@ -15,3 +15,4 @@ typedef struct {
15} rgb_t; 15} rgb_t;
16 16
17extern const hsv_t GODSPEED_BLUE; 17extern const hsv_t GODSPEED_BLUE;
18extern const hsv_t GODSPEED_YELLOW;