Files
Dotfiles/Pywal/colors-wal-st.h

35 lines
953 B
C

const char *colorname[] = {
/* 8 normal colors */
[0] = "#101725", /* black */
[1] = "#4C4D4F", /* red */
[2] = "#6C6A5F", /* green */
[3] = "#C15E59", /* yellow */
[4] = "#6F8F70", /* blue */
[5] = "#979274", /* magenta */
[6] = "#DC9548", /* cyan */
[7] = "#c3c5c8", /* white */
/* 8 bright colors */
[8] = "#5f6674", /* black */
[9] = "#4C4D4F", /* red */
[10] = "#6C6A5F", /* green */
[11] = "#C15E59", /* yellow */
[12] = "#6F8F70", /* blue */
[13] = "#979274", /* magenta */
[14] = "#DC9548", /* cyan */
[15] = "#c3c5c8", /* white */
/* special colors */
[256] = "#101725", /* background */
[257] = "#c3c5c8", /* foreground */
[258] = "#c3c5c8", /* cursor */
};
/* Default colors (colorname index)
* foreground, background, cursor */
unsigned int defaultbg = 0;
unsigned int defaultfg = 257;
unsigned int defaultcs = 258;
unsigned int defaultrcs= 258;