1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- --- config.def.h 2013-04-20 13:29:39.000000000 +0000
- +++ config.h 2014-03-01 14:14:09.068669933 +0000
- @@ -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 */
- + "#001931", /*color0*/
- + "#193046", /*color1*/
- + "#304558", /*color2*/
- + "#1A334C", /*color3*/
- + "#31475E", /*color4*/
- + "#003333", /*color5*/
- + "#194747", /*color6*/
- + "#334C4C", /*color7*/
- +
- + /* 8 bright colors */
- + "#475E5E", /*color8*/
- + "#1A4C33", /*color9*/
- + "#315E47", /*color10*/
- + "#003D00", /*color11*/
- + "#195019", /*color12*/
- + "#477347", /*color13*/
- + "#477347", /*color14*/
- + "#7DAD4C", /*color15*/
- +
- + [255] = 0,
- +
- + /* more colors can be added after 255 to use with DefaultXX */
- + "#cccccc", /*cursor*/
- + "#2E5C8A", /*background*/
- + "#A3CCCC", /*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,
- };
- -
|