Advertisement
poetician

seal-brown | st

Apr 24th, 2021
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. diff --git a/config.def.h b/config.def.h
  2. index 0e01717..c288227 100644
  3. --- a/config.def.h
  4. +++ b/config.def.h
  5. @@ -82,33 +82,35 @@ char *termname = "st-256color";
  6. */
  7. unsigned int tabspaces = 8;
  8.  
  9. -/* Terminal colors (16 first used in escape sequence) */
  10. +/*
  11. + * Terminal colors (16 first used in escape sequence)
  12. + * Base16 st template by Daniel Mulford
  13. + * oomox-seal brown scheme by oomox-seal brown
  14. + */
  15. static const char *colorname[] = {
  16. - /* 8 normal colors */
  17. - "black",
  18. - "red3",
  19. - "green3",
  20. - "yellow3",
  21. - "blue2",
  22. - "magenta3",
  23. - "cyan3",
  24. - "gray90",
  25. + /* 8 normal colors */
  26. + [0] = "#190134", /* black */
  27. + [1] = "#27d9d5", /* red */
  28. + [2] = "#c33678", /* green */
  29. + [3] = "#8f6c97", /* yellow */
  30. + [4] = "#bd0152", /* blue */
  31. + [5] = "#82034c", /* magenta */
  32. + [6] = "#f80059", /* cyan */
  33. + [7] = "#bdb6c5", /* white */
  34.  
  35. /* 8 bright colors */
  36. - "gray50",
  37. - "red",
  38. - "green",
  39. - "yellow",
  40. - "#5c5cff",
  41. - "magenta",
  42. - "cyan",
  43. - "white",
  44. + [8] = "#6b5b7c", /* black */
  45. + [9] = "#27d9d5", /* red */
  46. + [10] = "#c33678", /* green */
  47. + [11] = "#8f6c97", /* yellow */
  48. + [12] = "#bd0152", /* blue */
  49. + [13] = "#82034c", /* magenta */
  50. + [14] = "#f80059", /* cyan */
  51. + [15] = "#feffff", /* white */
  52.  
  53. [255] = 0,
  54.  
  55. /* more colors can be added after 255 to use with DefaultXX */
  56. - "#cccccc",
  57. - "#555555",
  58. };
  59.  
  60.  
  61. @@ -118,8 +120,8 @@ static const char *colorname[] = {
  62. */
  63. unsigned int defaultfg = 7;
  64. unsigned int defaultbg = 0;
  65. -static unsigned int defaultcs = 256;
  66. -static unsigned int defaultrcs = 257;
  67. +static unsigned int defaultcs = 7;
  68. +static unsigned int defaultrcs = 0;
  69.  
  70. /*
  71. * Default shape of cursor
  72.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement