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.

26 lines
904 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] = { "#81a1c1", "#0f111a" },
  8. [SchemeSelHighlight] = { "#88c0d0", "#bf616a" },
  9. };
  10. static double opacity = 1.0; /* -o option; defines alpha translucency */
  11. static const unsigned int baralpha = 0xFF;
  12. static const unsigned int borderalpha = OPAQUE;
  13. static const unsigned int alphas[][3] = {
  14. /* fg bg border */
  15. [SchemeNorm] = { OPAQUE, baralpha, borderalpha },
  16. [SchemeSel] = { OPAQUE, baralpha, borderalpha },
  17. [SchemeOut] = { OPAQUE, baralpha, borderalpha },
  18. [SchemeNormHighlight] = { OPAQUE, baralpha, borderalpha },
  19. [SchemeSelHighlight] = { OPAQUE, baralpha, borderalpha },
  20. };