Go to the documentation of this file. 10 #define __G_R (1 << 2) 11 #define __G_G (1 << 1) 15 #define G_BLUE (__G_B) 16 #define G_GREEN (__G_G) 17 #define G_CYAN (__G_B | __G_G) 19 #define G_PINKISH (__G_R | __G_B) 20 #define G_BROWN (__G_G | __G_R) 21 #define G_WHITE (__G_G | __G_B | __G_R) 24 #define TO_BG(X) (X << 4) 26 #define G_FLASH (1 << 7) 27 #define G_DARK (1 << 3) 29 #define G_BG_BLACK (TO_BG(G_BLACK)) 30 #define G_BG_WHITE (TO_BG(G_WHITE)) 32 #define G_FN_BLACK (TO_FN(G_BLACK)) 33 #define G_FN_WHITE (TO_FN(G_WHITE)) 36 #define G_DEFAULT (TO_FN(G_WHITE) | TO_BG(G_BLACK)) 37 #define G_DEFAULT_DARK (G_DEFAULT | G_DARK)