mirror of
https://github.com/dylanaraps/pywal.git
synced 2025-05-20 08:10:59 +02:00
Update colors-wal-st.h
This makes it easier to patch directly into st. Based on the new defaults.
This commit is contained in:
parent
4997a49eb7
commit
1ba1d438d1
@ -1,34 +1,38 @@
|
|||||||
const char *colorname[] = {{
|
static const char *colorname[] = {{
|
||||||
|
|
||||||
/* 8 normal colors */
|
/* 8 normal colors */
|
||||||
[0] = "{color0}", /* black */
|
"{color0}",
|
||||||
[1] = "{color1}", /* red */
|
"{color1}",
|
||||||
[2] = "{color2}", /* green */
|
"{color2}",
|
||||||
[3] = "{color3}", /* yellow */
|
"{color3}",
|
||||||
[4] = "{color4}", /* blue */
|
"{color4}",
|
||||||
[5] = "{color5}", /* magenta */
|
"{color5}",
|
||||||
[6] = "{color6}", /* cyan */
|
"{color6}",
|
||||||
[7] = "{color7}", /* white */
|
"{color7}",
|
||||||
|
|
||||||
/* 8 bright colors */
|
/* 8 bright colors */
|
||||||
[8] = "{color8}", /* black */
|
"{color8}",
|
||||||
[9] = "{color9}", /* red */
|
"{color9}",
|
||||||
[10] = "{color10}", /* green */
|
"{color10}",
|
||||||
[11] = "{color11}", /* yellow */
|
"{color11}",
|
||||||
[12] = "{color12}", /* blue */
|
"{color12}",
|
||||||
[13] = "{color13}", /* magenta */
|
"{color13}",
|
||||||
[14] = "{color14}", /* cyan */
|
"{color14}",
|
||||||
[15] = "{color15}", /* white */
|
"{color15}",
|
||||||
|
|
||||||
/* special colors */
|
[255] = 0,
|
||||||
[256] = "{background}", /* background */
|
|
||||||
[257] = "{foreground}", /* foreground */
|
/* more colors can be added after 255 to use with DefaultXX */
|
||||||
[258] = "{cursor}", /* cursor */
|
"{background}",
|
||||||
|
"{foreground}",
|
||||||
|
"{cursor}",
|
||||||
}};
|
}};
|
||||||
|
|
||||||
/* Default colors (colorname index)
|
|
||||||
* foreground, background, cursor */
|
/*
|
||||||
unsigned int defaultbg = 0;
|
* Default colors (colorname index)
|
||||||
|
* foreground, background, cursor, reverse cursor
|
||||||
|
*/
|
||||||
unsigned int defaultfg = 257;
|
unsigned int defaultfg = 257;
|
||||||
unsigned int defaultcs = 258;
|
unsigned int defaultbg = 256;
|
||||||
unsigned int defaultrcs= 258;
|
static unsigned int defaultcs = 258;
|
||||||
|
static unsigned int defaultrcs = 258;
|
||||||
|
Loading…
Reference in New Issue
Block a user