diff options
author | QMK Bot <hello@qmk.fm> | 2020-12-06 06:11:48 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2020-12-06 06:11:48 +0000 |
commit | 5cfbfc2c52aabd02733c14ba66c0c77f55506049 (patch) | |
tree | 81f19f0e1cae50c956637ef130e765a399c2f014 | |
parent | 2c121b3d8e29d21a84b263a1c80c70686ac4e8f1 (diff) | |
parent | 08bf9f9e740a741d674585b5920e4c3a107825b9 (diff) |
Merge remote-tracking branch 'origin/master' into develop
-rw-r--r-- | quantum/rgblight_list.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/rgblight_list.h b/quantum/rgblight_list.h index e30733baa6..f29a646b66 100644 --- a/quantum/rgblight_list.h +++ b/quantum/rgblight_list.h @@ -34,6 +34,8 @@ #define RGB_PURPLE 0x7A, 0x00, 0xFF #define RGB_MAGENTA 0xFF, 0x00, 0xFF #define RGB_PINK 0xFF, 0x80, 0xBF +#define RGB_BLACK 0x00, 0x00, 0x00 +#define RGB_OFF RGB_BLACK /* HSV COLORS */ #define HSV_WHITE 0, 0, 255 @@ -54,6 +56,8 @@ #define HSV_PURPLE 191, 255, 255 #define HSV_MAGENTA 213, 255, 255 #define HSV_PINK 234, 128, 255 +#define HSV_BLACK 0, 0, 0 +#define HSV_OFF HSV_BLACK /* ######################################################################################## |