gruvbox.rasi 967 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * ROFI color theme
  3. *
  4. * Based on Something Found in the Internet
  5. *
  6. * User: Contributors
  7. * Copyright: *!
  8. */
  9. configuration {
  10. font: "JetBrainsMono Nerd Font Medium 10";
  11. drun {
  12. display-name: "";
  13. }
  14. run {
  15. display-name: "";
  16. }
  17. window {
  18. display-name: "";
  19. }
  20. timeout {
  21. delay: 10;
  22. action: "kb-cancel";
  23. }
  24. }
  25. * {
  26. border: 0;
  27. margin: 0;
  28. padding: 0;
  29. spacing: 0;
  30. bg: #282828;
  31. bg-alt: #3c3836;
  32. fg: #fbf1c7;
  33. blue: #83a598;
  34. background-color: @bg;
  35. text-color: @fg;
  36. }
  37. window {
  38. transparency: "real";
  39. }
  40. mainbox {
  41. children: [inputbar, listview];
  42. }
  43. inputbar {
  44. background-color: @bg-alt;
  45. children: [prompt, entry];
  46. }
  47. entry {
  48. background-color: inherit;
  49. padding: 12px 3px;
  50. }
  51. prompt {
  52. background-color: inherit;
  53. padding: 12px 16px 12px 12px;
  54. }
  55. listview {
  56. lines: 8;
  57. }
  58. element {
  59. children: [element-text];
  60. }
  61. element-text {
  62. padding: 10px;
  63. }
  64. element-text selected {
  65. text-color: @blue;
  66. }