#ifndef Color_h
#define Color_h

#define WARM_WHITE      0xFF8732
#define NATURAL_WHITE   0xFFC832
#define COLD_WHITE      0xFFFFFF

#define WHITE_COLOR     0xFFFFFF
#define BLACK_COLOR     0x000000

#define RED_COLOR       0xFF0000
#define GREEN_COLOR     0x00FF00
#define BLUE_COLOR      0x0000FF

#define YELLOW_COLOR    0xFFFF00
#define MAGENTA_COLOR   0xFF00FF
#define CYAN_COLOR      0x00FFFF

#define ORANGE_COLOR    0xFF8000
#define PURPLE_COLOR    0x8000FF
#define PINK_COLOR      0xFF0080
#define LIME_COLOR      0x80FF00
#define SPRING_GREEN_COLOR 0x00FF80
#define ROYAL_BLUE_COLOR   0x0080FF

#endif
