Another copy of my dotfiles. Because I don't completely trust GitHub.
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.

39 lines
1.8 KiB

  1. /* appearance */
  2. static const unsigned int gappx = 6;
  3. static const unsigned int borderpx = 3; /* border pixel of windows */
  4. static const unsigned int snap = 32; /* snap pixel */
  5. static const int showbar = 1; /* 0 means no bar */
  6. static const int user_bh = 27;
  7. static const int bar_height = 27;
  8. static const int topbar = 1; /* 0 means bottom bar */
  9. static const char *fonts[] = { "CaskaydiaCove Nerd Font:size=10" };
  10. static const char dmenufont[] = "CaskaydiaCove Nerd Font:size=10";
  11. static const int vertpad = 10; /* vertical padding of bar */
  12. static const int sidepad = 10; /* horizontal padding of bar */
  13. static const char fore[] = "#e5e9f0";
  14. static const char back[] = "#0f111a";
  15. static const char border[] = "#3a575c";
  16. static const char col0[] = "#3b4252";
  17. static const char col1[] = "#bf616a"; /* red */
  18. static const char col2[] = "#a3be8c"; /* green */
  19. static const char col3[] = "#ebcb8b"; /* yellow */
  20. static const char col4[] = "#81a1c1"; /* light_blue */
  21. static const char col5[] = "#a48ead"; /* puple */
  22. static const char col6[] = "#88c0d0"; /* blue */
  23. static const char col7[] = "#e5e9f0"; /* white */
  24. static const char col8[] = "#4c566a"; /* gray */
  25. static char *colors[][ColCount] = {
  26. /* fg bg border float */
  27. [SchemeNorm] = { fore, back, border, border},
  28. [SchemeSel] = { fore, back, col1, border},
  29. [SchemeTitleNorm] = { fore, back, border },
  30. [SchemeTitleSel] = { fore, back, border, border},
  31. [SchemeTagsNorm] = { fore, back, border, border},
  32. [SchemeTagsSel] = { back, col1, border, border},
  33. [SchemeHid] = { back, col4, border, border},
  34. [SchemeUrg] = { back, col5, border, border},
  35. };