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.

44 lines
743 B

4 years ago
  1. /**
  2. * ROFI Color theme
  3. * User: Qball
  4. * Copyright: Dave Davenport
  5. */
  6. * {
  7. background-color: rgba(40, 42, 54, 1);
  8. border-color: rgba(248, 248, 242, 1);
  9. text-color: rgba(248, 248, 242, 1);
  10. font: "Hack Nerd Font 10";
  11. }
  12. window {
  13. anchor: north;
  14. location: north;
  15. width: 100%;
  16. padding: 6px;
  17. children: [ horibox ];
  18. }
  19. horibox {
  20. orientation: horizontal;
  21. children: [ prompt, entry, listview ];
  22. }
  23. listview {
  24. layout: horizontal;
  25. spacing: 5px;
  26. lines: 100;
  27. }
  28. entry {
  29. expand: false;
  30. width: 10em;
  31. }
  32. element {
  33. padding: 0px 2px;
  34. }
  35. element selected {
  36. background-color: rgba(189, 147, 249, 1);
  37. }
  38. /* vim:ft=css