1234567891011121314151617181920212223242526272829303132333435 |
- const char *colorname[] = {
- /* 8 normal colors */
- [0] = "#111b25", /* black */
- [1] = "#386693", /* red */
- [2] = "#396E9E", /* green */
- [3] = "#49749E", /* yellow */
- [4] = "#658CB2", /* blue */
- [5] = "#769ABC", /* magenta */
- [6] = "#7B9EC0", /* cyan */
- [7] = "#b5c7d7", /* white */
- /* 8 bright colors */
- [8] = "#7e8b96", /* black */
- [9] = "#386693", /* red */
- [10] = "#396E9E", /* green */
- [11] = "#49749E", /* yellow */
- [12] = "#658CB2", /* blue */
- [13] = "#769ABC", /* magenta */
- [14] = "#7B9EC0", /* cyan */
- [15] = "#b5c7d7", /* white */
- /* special colors */
- [256] = "#111b25", /* background */
- [257] = "#b5c7d7", /* foreground */
- [258] = "#b5c7d7", /* cursor */
- };
- /* Default colors (colorname index)
- * foreground, background, cursor */
- unsigned int defaultbg = 0;
- unsigned int defaultfg = 257;
- unsigned int defaultcs = 258;
- unsigned int defaultrcs= 258;
|