My build of suckless st terminal
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
1.6 KiB

3 years ago
  1. diff --git a/config.def.h b/config.def.h
  2. index 877afab..6a1699f 100644
  3. --- a/config.def.h
  4. +++ b/config.def.h
  5. @@ -84,41 +84,35 @@ static unsigned int tabspaces = 8;
  6. /* Terminal colors (16 first used in escape sequence) */
  7. static const char *colorname[] = {
  8. - /* 8 normal colors */
  9. - "black",
  10. - "red3",
  11. - "green3",
  12. - "yellow3",
  13. - "blue2",
  14. - "magenta3",
  15. - "cyan3",
  16. - "gray90",
  17. -
  18. - /* 8 bright colors */
  19. - "gray50",
  20. - "red",
  21. - "green",
  22. - "yellow",
  23. - "#5c5cff",
  24. - "magenta",
  25. - "cyan",
  26. - "white",
  27. -
  28. - [255] = 0,
  29. -
  30. - /* more colors can be added after 255 to use with DefaultXX */
  31. - "#cccccc",
  32. - "#555555",
  33. -};
  34. + /* 8 normal colors */
  35. + [0] = "#282828", /* hard contrast: #1d2021 / soft contrast: #32302f */
  36. + [1] = "#cc241d", /* red */
  37. + [2] = "#98971a", /* green */
  38. + [3] = "#d79921", /* yellow */
  39. + [4] = "#458588", /* blue */
  40. + [5] = "#b16286", /* magenta */
  41. + [6] = "#689d6a", /* cyan */
  42. + [7] = "#a89984", /* white */
  43. +
  44. + /* 8 bright colors */
  45. + [8] = "#928374", /* black */
  46. + [9] = "#fb4934", /* red */
  47. + [10] = "#b8bb26", /* green */
  48. + [11] = "#fabd2f", /* yellow */
  49. + [12] = "#83a598", /* blue */
  50. + [13] = "#d3869b", /* magenta */
  51. + [14] = "#8ec07c", /* cyan */
  52. + [15] = "#ebdbb2", /* white */
  53. +};
  54. /*
  55. * Default colors (colorname index)
  56. - * foreground, background, cursor, reverse cursor
  57. + * foreground, background, cursor
  58. */
  59. -unsigned int defaultfg = 7;
  60. -unsigned int defaultbg = 0;
  61. -static unsigned int defaultcs = 256;
  62. +unsigned int defaultfg = 15;
  63. +unsigned int defaultbg = 0;
  64. +static unsigned int defaultcs = 15;
  65. static unsigned int defaultrcs = 257;
  66. /*