Browse Source

Add definitions for RGB off/black. (#11132)

pull/11134/head
r-pufky 3 years ago
committed by GitHub
parent
commit
08bf9f9e74
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      quantum/rgblight_list.h

+ 4
- 0
quantum/rgblight_list.h View File

@ -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
/*
########################################################################################


Loading…
Cancel
Save