1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- --- config.def.h 2013-04-20 21:29:39.000000000 +0800
- +++ config.h 2014-02-09 04:02:15.589999709 +0800
- @@ -28,30 +28,33 @@
-
- /* Terminal colors (16 first used in escape sequence) */
- static const char *colorname[] = {
- - /* 8 normal colors */
- - "black",
- - "red3",
- - "green3",
- - "yellow3",
- - "blue2",
- - "magenta3",
- - "cyan3",
- - "gray90",
- -
- - /* 8 bright colors */
- - "gray50",
- - "red",
- - "green",
- - "yellow",
- - "#5c5cff",
- - "magenta",
- - "cyan",
- - "white",
- -
- - [255] = 0,
- -
- - /* more colors can be added after 255 to use with DefaultXX */
- - "#cccccc",
- + /* 8 normal colors */
- + "#534A39", /*color0*/
- + "#746957", /*color1*/
- + "#87785E", /*color2*/
- + "#877A66", /*color3*/
- + "#978A75", /*color4*/
- + "#A79A86", /*color5*/
- + "#A99676", /*color6*/
- + "#B5A894", /*color7*/
- +
- + /* 8 bright colors */
- + "#B8AB9A", /*color8*/
- + "#C6B9A7", /*color9*/
- + "#C7AA7B", /*color10*/
- + "#C9B492", /*color11*/
- + "#D4C5B0", /*color12*/
- + "#E9D5B4", /*color13*/
- + "#EBD5AE", /*color14*/
- + "#FBEDCB", /*color15*/
- +
- + [255] = 0,
- +
- + /* more colors can be added after 255 to use with DefaultXX */
- + "#cccccc", /*cursor*/
- + "#1f1b18", /*background*/
- + "#b9ae9e", /*foreground*/
- + "#303030",
- };
-
-
- @@ -59,8 +62,8 @@
- * Default colors (colorname index)
- * foreground, background, cursor
- */
- -static unsigned int defaultfg = 7;
- -static unsigned int defaultbg = 0;
- +static unsigned int defaultfg = 258;
- +static unsigned int defaultbg = 257;
- static unsigned int defaultcs = 256;
-
- /*
- @@ -329,4 +332,3 @@
- static uint selmasks[] = {
- [SEL_RECTANGULAR] = Mod1Mask,
- };
- -
|