1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- --- config.def.h 2013-04-20 21:29:39.000000000 +0800
- +++ config.h 2014-02-09 03:31:03.878399793 +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 */
- + "#181B25", /*color0*/
- + "#283646", /*color1*/
- + "#2C2A30", /*color2*/
- + "#354C4E", /*color3*/
- + "#45443C", /*color4*/
- + "#5A6557", /*color5*/
- + "#758572", /*color6*/
- + "#837D72", /*color7*/
- +
- + /* 8 bright colors */
- + "#938D6C", /*color8*/
- + "#A8B199", /*color9*/
- + "#B7C39C", /*color10*/
- + "#BBC5AB", /*color11*/
- + "#C8CDB3", /*color12*/
- + "#D39A74", /*color13*/
- + "#D6D2B8", /*color14*/
- + "#DFD6AF", /*color15*/
- +
- + [255] = 0,
- +
- + /* more colors can be added after 255 to use with DefaultXX */
- + "#cccccc", /*cursor*/
- + "#000000", /*background*/
- + "#999999", /*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,
- };
- -
|