colors-wal-st.h 953 B

1234567891011121314151617181920212223242526272829303132333435
  1. const char *colorname[] = {
  2. /* 8 normal colors */
  3. [0] = "#111b25", /* black */
  4. [1] = "#386693", /* red */
  5. [2] = "#396E9E", /* green */
  6. [3] = "#49749E", /* yellow */
  7. [4] = "#658CB2", /* blue */
  8. [5] = "#769ABC", /* magenta */
  9. [6] = "#7B9EC0", /* cyan */
  10. [7] = "#b5c7d7", /* white */
  11. /* 8 bright colors */
  12. [8] = "#7e8b96", /* black */
  13. [9] = "#386693", /* red */
  14. [10] = "#396E9E", /* green */
  15. [11] = "#49749E", /* yellow */
  16. [12] = "#658CB2", /* blue */
  17. [13] = "#769ABC", /* magenta */
  18. [14] = "#7B9EC0", /* cyan */
  19. [15] = "#b5c7d7", /* white */
  20. /* special colors */
  21. [256] = "#111b25", /* background */
  22. [257] = "#b5c7d7", /* foreground */
  23. [258] = "#b5c7d7", /* cursor */
  24. };
  25. /* Default colors (colorname index)
  26. * foreground, background, cursor */
  27. unsigned int defaultbg = 0;
  28. unsigned int defaultfg = 257;
  29. unsigned int defaultcs = 258;
  30. unsigned int defaultrcs= 258;