Last active
June 3, 2018 17:59
-
-
Save kormyen/4075651066f18bee9b737b544b1dc06f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define WHITE 0xFFFF /* 255, 255, 255 */ | |
#define LIGHTGREY 0xC618 /* 192, 192, 192 */ | |
#define DARKGREY 0x7BEF /* 128, 128, 128 */ | |
#define BLACK 0x0000 /* 0, 0, 0 */ | |
#define NAVY 0x000F /* 0, 0, 128 */ | |
#define BLUE 0x001F /* 0, 0, 255 */ | |
#define DARKCYAN 0x03EF /* 0, 128, 128 */ | |
#define CYAN 0x07FF /* 0, 255, 255 */ | |
#define GREEN 0x07E0 /* 0, 255, 0 */ | |
#define DARKGREEN 0x03E0 /* 0, 128, 0 */ | |
#define OLIVE 0x7BE0 /* 128, 128, 0 */ | |
#define GREENYELLOW 0xAFE5 /* 173, 255, 47 */ | |
#define YELLOW 0xFFE0 /* 255, 255, 0 */ | |
#define ORANGE 0xFD20 /* 255, 165, 0 */ | |
#define RED 0xF800 /* 255, 0, 0 */ | |
#define MAROON 0x7800 /* 128, 0, 0 */ | |
#define MAGENTA 0xF81F /* 255, 0, 255 */ | |
#define PURPLE 0x780F /* 128, 0, 128 */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment