meditatesafe.diff 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. --- config.def.h 2013-04-20 21:29:39.000000000 +0800
  2. +++ config.h 2014-02-09 01:10:53.833539707 +0800
  3. @@ -28,30 +28,33 @@
  4. /* Terminal colors (16 first used in escape sequence) */
  5. static const char *colorname[] = {
  6. - /* 8 normal colors */
  7. - "black",
  8. - "red3",
  9. - "green3",
  10. - "yellow3",
  11. - "blue2",
  12. - "magenta3",
  13. - "cyan3",
  14. - "gray90",
  15. -
  16. - /* 8 bright colors */
  17. - "gray50",
  18. - "red",
  19. - "green",
  20. - "yellow",
  21. - "#5c5cff",
  22. - "magenta",
  23. - "cyan",
  24. - "white",
  25. -
  26. - [255] = 0,
  27. -
  28. - /* more colors can be added after 255 to use with DefaultXX */
  29. - "#cccccc",
  30. + /* 8 normal colors */
  31. + "#2F1C13", /*color0*/
  32. + "#3A2921", /*color1*/
  33. + "#432B1C", /*color2*/
  34. + "#5B4739", /*color3*/
  35. + "#845B3D", /*color4*/
  36. + "#A28976", /*color5*/
  37. + "#D6B69E", /*color6*/
  38. + "#E4BEA3", /*color7*/
  39. +
  40. + /* 8 bright colors */
  41. + "#38261C", /*color8*/
  42. + "#3D3F40", /*color9*/
  43. + "#463329", /*color10*/
  44. + "#6A594C", /*color11*/
  45. + "#8C7463", /*color12*/
  46. + "#C0AB9C", /*color13*/
  47. + "#DBC4B1", /*color14*/
  48. + "#EAC5A9", /*color15*/
  49. +
  50. + [255] = 0,
  51. +
  52. + /* more colors can be added after 255 to use with DefaultXX */
  53. + "#cccccc", /*cursor*/
  54. + "#170F0D", /*background*/
  55. + "#746C48", /*foreground*/
  56. + "#303030",
  57. };
  58. @@ -59,8 +62,8 @@
  59. * Default colors (colorname index)
  60. * foreground, background, cursor
  61. */
  62. -static unsigned int defaultfg = 7;
  63. -static unsigned int defaultbg = 0;
  64. +static unsigned int defaultfg = 258;
  65. +static unsigned int defaultbg = 257;
  66. static unsigned int defaultcs = 256;
  67. /*
  68. @@ -329,4 +332,3 @@
  69. static uint selmasks[] = {
  70. [SEL_RECTANGULAR] = Mod1Mask,
  71. };
  72. -