Advertisement
Guest User

rofi theme

a guest
Mar 21st, 2022
669
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. * {
  2. background-color: Black;
  3. border-color: White;
  4. text-color: White;
  5. font: "Times New Roman 14";
  6. }
  7. window {
  8. anchor: north;
  9. location: north;
  10. width: 100%;
  11. padding: 4px;
  12. children: [ horibox ];
  13. }
  14. horibox {
  15. orientation: horizontal;
  16. children: [ prompt, entry, listview ];
  17. }
  18. listview {
  19. layout: horizontal;
  20. spacing: 5px;
  21. lines: 100;
  22. }
  23. entry {
  24. expand: false;
  25. width: 10em;
  26. }
  27. element {
  28. padding: 0px 2px;
  29. }
  30. element selected {
  31. background-color: #ffffff;
  32. text-color: #000000;
  33. }
  34.  
  35. element-text, element-icon {
  36. background-color: inherit;
  37. text-color: inherit;
  38. }
  39.  
  40. I tried:
  41. element selected {
  42. background-color: #ffffff;
  43. text-color: #000000;
  44. font: "Times New Roman Bold 14"
  45. }
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement