change colours
This commit is contained in:
parent
95c4e5af97
commit
314f255b5c
54
colours.h
54
colours.h
@ -1,34 +1,36 @@
|
|||||||
const char *colorname[] = {
|
static const char *colorname[] = {
|
||||||
|
|
||||||
/* 8 normal colors */
|
/* 8 normal colors */
|
||||||
[0] = "#111313", /* black */
|
[0] = "#1e2127", /* black */
|
||||||
[1] = "#AFA98E", /* red */
|
[1] = "#e06c75", /* red */
|
||||||
[2] = "#8FA9A9", /* green */
|
[2] = "#98c379", /* green */
|
||||||
[3] = "#E29F8D", /* yellow */
|
[3] = "#d19a66", /* yellow */
|
||||||
[4] = "#ABCABB", /* blue */
|
[4] = "#61afef", /* blue */
|
||||||
[5] = "#E0D7B2", /* magenta */
|
[5] = "#c678dd", /* magenta */
|
||||||
[6] = "#EBDBB2", /* cyan */
|
[6] = "#56b6c2", /* cyan */
|
||||||
[7] = "#e1e6d8", /* white */
|
[7] = "#abb2bf", /* white */
|
||||||
|
|
||||||
/* 8 bright colors */
|
/* 8 bright colors */
|
||||||
[8] = "#9da197", /* black */
|
[8] = "#5c6370", /* black */
|
||||||
[9] = "#AFA98E", /* red */
|
[9] = "#e06c75", /* red */
|
||||||
[10] = "#8FA9A9", /* green */
|
[10] = "#98c379", /* green */
|
||||||
[11] = "#E29F8D", /* yellow */
|
[11] = "#d19a66", /* yellow */
|
||||||
[12] = "#ABCABB", /* blue */
|
[12] = "#61afef", /* blue */
|
||||||
[13] = "#E0D7B2", /* magenta */
|
[13] = "#c678dd", /* magenta */
|
||||||
[14] = "#EBDBB2", /* cyan */
|
[14] = "#56b6c2", /* cyan */
|
||||||
[15] = "#e1e6d8", /* white */
|
[15] = "#ffffff", /* white */
|
||||||
|
|
||||||
/* special colors */
|
/* special colors */
|
||||||
[256] = "#111313", /* background */
|
[256] = "#1e2127", /* background */
|
||||||
[257] = "#e1e6d8", /* foreground */
|
[257] = "#abb2bf", /* foreground */
|
||||||
[258] = "#e1e6d8", /* cursor */
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Default colors (colorname index)
|
/*
|
||||||
* foreground, background, cursor */
|
* Default colors (colorname index)
|
||||||
unsigned int defaultbg = 0;
|
* foreground, background, cursor
|
||||||
unsigned int defaultfg = 257;
|
*/
|
||||||
unsigned int defaultcs = 258;
|
unsigned int defaultfg = 257;
|
||||||
unsigned int defaultrcs= 258;
|
unsigned int defaultbg = 256;
|
||||||
|
unsigned int defaultcs = 257;
|
||||||
|
unsigned int defaultrcs = 257;
|
||||||
|
unsigned int background = 256;
|
||||||
|
Loading…
Reference in New Issue
Block a user