poetician

Rofi | avocado

Jun 21st, 2021
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.47 KB | None | 0 0
  1. /**
  2. * Base16 avocado_2 ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: avocado_2
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. * Customization: Poetician Edition (https://github.com/poetician)
  8. */
  9.  
  10. * {
  11. green: #d2e190;
  12. red: #001c00;
  13. blue: #74923acc;
  14. lightfg: #81A140;
  15. lightbg: #617b3066;
  16. foreground: #234f1ecc;
  17. background: #00000066;
  18. background-color: #A3BF4566;
  19. separatorcolor: @foreground;
  20. border-color: @foreground;
  21. selected-normal-foreground: @red;
  22. selected-normal-background: @green;
  23. selected-active-foreground: @red;
  24. selected-active-background: @blue;
  25. selected-urgent-foreground: @background;
  26. selected-urgent-background: @red;
  27. normal-foreground: @green;
  28. normal-background: @background;
  29. active-foreground: @blue;
  30. active-background: @background;
  31. urgent-foreground: @red;
  32. urgent-background: @background;
  33. alternate-normal-foreground: @green;
  34. alternate-normal-background: @blue;
  35. alternate-active-foreground: @blue;
  36. alternate-active-background: @lightbg;
  37. alternate-urgent-foreground: @red;
  38. alternate-urgent-background: @lightbg;
  39. spacing: 2;
  40. }
  41. window {
  42. background-color: @background;
  43. border: 9;
  44. padding: 0;
  45. }
  46. mainbox {
  47. border: 9;
  48. padding: 0;
  49. }
  50. message {
  51. border: 1px dash 0px 0px ;
  52. border-color: @separatorcolor;
  53. padding: 1px ;
  54. }
  55. textbox {
  56. text-color: @foreground;
  57. vertical-align: 1;
  58. }
  59. listview {
  60. fixed-height: 0;
  61. border: 2px dash 0px 0px ;
  62. border-color: @separatorcolor;
  63. spacing: 2px ;
  64. scrollbar: true;
  65. padding: 2px 0px 0px ;
  66. layout: vertical;
  67. }
  68. element-icon {
  69. size: 3em;
  70. }
  71. element {
  72. orientation: vertical;
  73. }
  74. element-text {
  75. horizontal-align: 0.50;
  76. }
  77. element {
  78. border: 10;
  79. padding: 0px ;
  80. }
  81. element normal.normal {
  82. background-color: @normal-background;
  83. text-color: @normal-foreground;
  84. }
  85. element normal.urgent {
  86. background-color: @urgent-background;
  87. text-color: @urgent-foreground;
  88. }
  89. element normal.active {
  90. background-color: @active-background;
  91. text-color: @active-foreground;
  92. }
  93. element selected.normal {
  94. background-color: @selected-normal-background;
  95. text-color: @selected-normal-foreground;
  96. }
  97. element selected.urgent {
  98. background-color: @selected-urgent-background;
  99. text-color: @selected-urgent-foreground;
  100. }
  101. element selected.active {
  102. background-color: @selected-active-background;
  103. text-color: @selected-active-foreground;
  104. }
  105. element alternate.normal {
  106. background-color: @alternate-normal-background;
  107. text-color: @alternate-normal-foreground;
  108. }
  109. element alternate.urgent {
  110. background-color: @alternate-urgent-background;
  111. text-color: @alternate-urgent-foreground;
  112. }
  113. element alternate.active {
  114. background-color: @alternate-active-background;
  115. text-color: @alternate-active-foreground;
  116. }
  117. scrollbar {
  118. width: 4px ;
  119. border: 0;
  120. handle-color: @normal-foreground;
  121. handle-width: 8px ;
  122. padding: 0;
  123. }
  124. sidebar {
  125. border: 2px dash 0px 0px ;
  126. border-color: @separatorcolor;
  127. }
  128. button {
  129. spacing: 0;
  130. text-color: @normal-foreground;
  131. }
  132. button selected {
  133. background-color: @selected-normal-background;
  134. text-color: @selected-normal-foreground;
  135. }
  136. inputbar {
  137. spacing: 0px;
  138. text-color: @normal-foreground;
  139. padding: 1px ;
  140. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  141. }
  142. case-indicator {
  143. spacing: 0;
  144. text-color: @normal-foreground;
  145. }
  146. entry {
  147. spacing: 0;
  148. text-color: @green;
  149. }
  150. prompt {
  151. spacing: 0;
  152. text-color: @green;
  153. }
  154. textbox-prompt-colon {
  155. expand: false;
  156. str: ":";
  157. margin: 0px 0.3000em 0.0000em 0.0000em ;
  158. text-color: inherit;
  159. }
  160.  
Advertisement
Add Comment
Please, Sign In to add comment