Advertisement
poetician

Rofi | avocado-02

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