added Pywal base files
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
const char *colorname[] = {
|
||||
|
||||
/* 8 normal colors */
|
||||
[0] = "#0f0d16", /* black */
|
||||
[1] = "#98364A", /* red */
|
||||
[2] = "#C6394B", /* green */
|
||||
[3] = "#A84859", /* yellow */
|
||||
[4] = "#DE5F67", /* blue */
|
||||
[5] = "#F3877C", /* magenta */
|
||||
[6] = "#DA7C82", /* cyan */
|
||||
[7] = "#f1c3bf", /* white */
|
||||
|
||||
/* 8 bright colors */
|
||||
[8] = "#a88885", /* black */
|
||||
[9] = "#98364A", /* red */
|
||||
[10] = "#C6394B", /* green */
|
||||
[11] = "#A84859", /* yellow */
|
||||
[12] = "#DE5F67", /* blue */
|
||||
[13] = "#F3877C", /* magenta */
|
||||
[14] = "#DA7C82", /* cyan */
|
||||
[15] = "#f1c3bf", /* white */
|
||||
|
||||
/* special colors */
|
||||
[256] = "#0f0d16", /* background */
|
||||
[257] = "#f1c3bf", /* foreground */
|
||||
[258] = "#f1c3bf", /* cursor */
|
||||
};
|
||||
|
||||
/* Default colors (colorname index)
|
||||
* foreground, background, cursor */
|
||||
unsigned int defaultbg = 0;
|
||||
unsigned int defaultfg = 257;
|
||||
unsigned int defaultcs = 258;
|
||||
unsigned int defaultrcs= 258;
|
||||
Reference in New Issue
Block a user