config.h (986B)
1 /* Terminal colors (16 first used in escape sequence) */ 2 static const char *colorname[] = { 3 4 /* 8 normal colors */ 5 [0] = "#202a31", /* black */ 6 [1] = "#c17b8d", /* red */ 7 [2] = "#7d9761", /* green */ 8 [3] = "#b28761", /* yellow */ 9 [4] = "#5496bd", /* blue */ 10 [5] = "#9b85bb", /* magenta */ 11 [6] = "#459d90", /* cyan */ 12 [7] = "#abb0c0", /* white */ 13 14 /* 8 bright colors */ 15 [8] = "#898f9e", /* black */ 16 [9] = "#c17b8d", /* red */ 17 [10] = "#7d9761", /* green */ 18 [11] = "#b28761", /* yellow */ 19 [12] = "#5496bd", /* blue */ 20 [13] = "#9b85bb", /* magenta */ 21 [14] = "#459d90", /* cyan */ 22 [15] = "#c5cbdb", /* white */ 23 24 /* special colors */ 25 [256] = "#202a31", /* background */ 26 [257] = "#abb0c0", /* foreground */ 27 }; 28 29 /* 30 * Default colors (colorname index) 31 * foreground, background, cursor 32 */ 33 unsigned int defaultfg = 257; 34 unsigned int defaultbg = 256; 35 unsigned int defaultcs = 257; 36 static unsigned int defaultrcs = 256;