summaryrefslogtreecommitdiffstats
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, 17 insertions, 0 deletions
diff --git a/users/konstantin/rgb.h b/users/konstantin/rgb.h
new file mode 100644
index 000000000..2ea10c67a
--- /dev/null
+++ b/users/konstantin/rgb.h
@@ -0,0 +1,17 @@
+#pragma once
+
+#include "quantum.h"
+
+typedef struct {
+ uint16_t h;
+ uint8_t s;
+ uint8_t v;
+} hsv_t;
+
+typedef struct {
+ uint8_t r;
+ uint8_t g;
+ uint8_t b;
+} rgb_t;
+
+extern const hsv_t GODSPEED_BLUE;