aboutsummaryrefslogtreecommitdiff
path: root/users/konstantin/rgb.h
diff options
context:
space:
mode:
Diffstat (limited to 'users/konstantin/rgb.h')
-rw-r--r--users/konstantin/rgb.h17
1 files changed, 3 insertions, 14 deletions
diff --git a/users/konstantin/rgb.h b/users/konstantin/rgb.h
index aed855aa0..36a9d9cd7 100644
--- a/users/konstantin/rgb.h
+++ b/users/konstantin/rgb.h
@@ -2,17 +2,6 @@
2 2
3#include "quantum.h" 3#include "quantum.h"
4 4
5typedef struct { 5extern const HSV GODSPEED_BLUE;
6 uint16_t h; // 0–360 6extern const HSV GODSPEED_YELLOW;
7 uint8_t s; // 0–255 7extern const HSV MODERN_DOLCH_RED;
8 uint8_t v; // 0–255
9} hsv_t;
10
11typedef struct {
12 uint8_t r; // 0–255
13 uint8_t g; // 0–255
14 uint8_t b; // 0–255
15} rgb_t;
16
17extern const hsv_t GODSPEED_BLUE;
18extern const hsv_t GODSPEED_YELLOW;