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.

27 lines
947 B

  1. /* This file is used for color settings */
  2. static const char *colors[SchemeLast][2] = {
  3. /* fg bg */
  4. [SchemeNorm] = { "#e5e9f0", "#0f111a" },
  5. [SchemeSel] = { "#0f111a", "#bf616a" },
  6. [SchemeOut] = { "#000000", "#00ffff" },
  7. [SchemeNormHighlight] = { "#88c0d0", "#0f111a" },
  8. [SchemeSelHighlight] = { "#88c0d0", "#bf616a" },
  9. // [SchemeHp] = { "#e5e9f0", "#4c566a" },
  10. };
  11. static double opacity = 1.0; /* -o option; defines alpha translucency */
  12. static const unsigned int baralpha = 0xFF;
  13. static const unsigned int borderalpha = OPAQUE;
  14. static const unsigned int alphas[][3] = {
  15. /* fg bg border */
  16. [SchemeNorm] = { OPAQUE, baralpha, borderalpha },
  17. [SchemeSel] = { OPAQUE, baralpha, borderalpha },
  18. [SchemeOut] = { OPAQUE, baralpha, borderalpha },
  19. [SchemeNormHighlight] = { OPAQUE, baralpha, borderalpha },
  20. [SchemeSelHighlight] = { OPAQUE, baralpha, borderalpha },
  21. };