Simple RGB backlight theming

This commit is contained in:
Priyadi Iman Nurcahyo
2017-04-30 18:04:58 +07:00
parent 2f28652dcc
commit 343f8d368e
5 changed files with 161 additions and 72 deletions

View File

@@ -0,0 +1,15 @@
#define COLOR_BLANK 0, 0, 0
#define COLOR_BLACK 0, 0, 0
#define COLOR_WHITE 15,15,15
#define COLOR_GRAY 7, 7, 7
#define COLOR_RED 15, 0, 0
#define COLOR_GREEN 0,15, 0
#define COLOR_BLUE 0, 0,15
#define COLOR_YELLOW 15,15, 0
#define COLOR_MAGENTA 15, 0,15
#define COLOR_CYAN 0,15,15
#define COLOR_ORANGE 15, 5, 0