aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorr-pufky <r-pufky@users.noreply.github.com>2020-12-05 22:10:58 -0800
committerGitHub <noreply@github.com>2020-12-06 17:10:58 +1100
commit08bf9f9e740a741d674585b5920e4c3a107825b9 (patch)
treee9cfb20a24691627c09f796a1a9ea65b124f3599
parentcba76092ebab65b1b6ec964b2723b795dc6c0b08 (diff)
downloadqmk_firmware-08bf9f9e740a741d674585b5920e4c3a107825b9.tar.gz
qmk_firmware-08bf9f9e740a741d674585b5920e4c3a107825b9.zip
Add definitions for RGB off/black. (#11132)
-rw-r--r--quantum/rgblight_list.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/rgblight_list.h b/quantum/rgblight_list.h
index e30733baa..f29a646b6 100644
--- a/quantum/rgblight_list.h
+++ b/quantum/rgblight_list.h
@@ -34,6 +34,8 @@
34#define RGB_PURPLE 0x7A, 0x00, 0xFF 34#define RGB_PURPLE 0x7A, 0x00, 0xFF
35#define RGB_MAGENTA 0xFF, 0x00, 0xFF 35#define RGB_MAGENTA 0xFF, 0x00, 0xFF
36#define RGB_PINK 0xFF, 0x80, 0xBF 36#define RGB_PINK 0xFF, 0x80, 0xBF
37#define RGB_BLACK 0x00, 0x00, 0x00
38#define RGB_OFF RGB_BLACK
37 39
38/* HSV COLORS */ 40/* HSV COLORS */
39#define HSV_WHITE 0, 0, 255 41#define HSV_WHITE 0, 0, 255
@@ -54,6 +56,8 @@
54#define HSV_PURPLE 191, 255, 255 56#define HSV_PURPLE 191, 255, 255
55#define HSV_MAGENTA 213, 255, 255 57#define HSV_MAGENTA 213, 255, 255
56#define HSV_PINK 234, 128, 255 58#define HSV_PINK 234, 128, 255
59#define HSV_BLACK 0, 0, 0
60#define HSV_OFF HSV_BLACK
57 61
58/* 62/*
59######################################################################################## 63########################################################################################