README: mention SDL2 backend
[rofl0r-concol.git] / colors.h
blob23661ab04cb6d0de4b1d6b729871270edeef7861
1 #ifndef COLORS_H
2 #define COLORS_H
4 /* standard terminal colors in R,G,B notation */
5 #define BLACK 0x0,0x00,0x0
6 #define RED 0xFF,0x0,0x0
7 #define GREEN 0x0,0xFF,0x0
8 #define YELLOW 0xFF,0xFF,0x0
9 #define BLUE 0x0,0x0,0xFF
10 #define MAGENTA 0xFF,0,0xFF
11 #define CYAN 0,0xFF,0xFF
12 #define WHITE 0xFF,0xFF,0xFF
14 /* other colors */
15 #define ORANGE 0xff, 0x66, 0x00
16 #define GREEN2 0x0,0x80,0x0
17 #define BLUE_NICE 0x0,0x33,0xAA
18 #define GRAY_LIGHT 0x66,0x66,0x66
19 #define GRAY_DARK 0x33,0x33,0x33
20 #define NORTON_UTILITIES_VIOLET 0x55,0x55,0xFF
23 #include "rgb.h"
24 #define RGB3(x) RGB(x)
26 // use RGB3(WHITE) to get a color
28 #endif