poetician

Rofi | avocado-03

Jun 21st, 2021
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.88 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: #d2e1901a;
  12. red: #001c004d;
  13. blue: #74923a4d;
  14. lightfg: #81A14099;
  15. lightbg: #617b3099;
  16. foreground: #234f1ecc;
  17. background: #A3BF4533;
  18. background-color: #A3BF4533;
  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: @foreground;
  28. normal-background: @background;
  29. active-foreground: @blue;
  30. active-background: @background;
  31. urgent-foreground: @red;
  32. urgent-background: @background;
  33. alternate-normal-foreground: @foreground;
  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: 6 3 6 9 ;
  44. border-radius: 12 3 3 12 ;
  45. padding: 3 6 3 12 ;
  46. x-offset: 0px ;
  47. y-offset: 0px ;
  48. }
  49. mainbox {
  50. border: 6 3 6 9 ;
  51. border-radius: 12 3 3 12 ;
  52. padding: 3 6 3 12 ;
  53. }
  54. message {
  55. border: 6 3 6 9 ;
  56. border-color: @separatorcolor;
  57. padding: 1px ;
  58. }
  59. textbox {
  60. text-color: @foreground;
  61. vertical-align: 1;
  62. }
  63. listview {
  64. fixed-height: 0;
  65. border: 6 3 6 9 ;
  66. border-radius: 12 3 3 12 ;
  67. border-color: @separatorcolor;
  68. spacing: 2px ;
  69. scrollbar: false;
  70. padding: 3px 6px 3px 9px ;
  71. layout: vertical;
  72. }
  73. element-icon {
  74. size: 2.2em;
  75. }
  76. element {
  77. orientation: horizontal;
  78. }
  79. element-text {
  80. vertical-align: 0.50;
  81. }
  82. element {
  83. border: 6 3 6 9 ;
  84. border-radius: 12 3 3 12 ;
  85. padding: 3px 6px 3px 12px ;
  86. }
  87. element normal.normal {
  88. background-color: @normal-background;
  89. text-color: @normal-foreground;
  90. }
  91. element normal.urgent {
  92. background-color: @urgent-background;
  93. text-color: @urgent-foreground;
  94. }
  95. element normal.active {
  96. background-color: @active-background;
  97. text-color: @active-foreground;
  98. }
  99. element selected.normal {
  100. background-color: @selected-normal-background;
  101. text-color: @selected-normal-foreground;
  102. }
  103. element selected.urgent {
  104. background-color: @selected-urgent-background;
  105. text-color: @selected-urgent-foreground;
  106. }
  107. element selected.active {
  108. background-color: @selected-active-background;
  109. text-color: @selected-active-foreground;
  110. }
  111. element alternate.normal {
  112. background-color: @alternate-normal-background;
  113. text-color: @alternate-normal-foreground;
  114. }
  115. element alternate.urgent {
  116. background-color: @alternate-urgent-background;
  117. text-color: @alternate-urgent-foreground;
  118. }
  119. element alternate.active {
  120. background-color: @alternate-active-background;
  121. text-color: @alternate-active-foreground;
  122. }
  123. scrollbar {
  124. width: 4px ;
  125. border: 0;
  126. handle-color: @normal-foreground;
  127. handle-width: 8px ;
  128. padding: 0;
  129. }
  130. sidebar {
  131. border: 2px dash 0px 0px ;
  132. border-color: @separatorcolor;
  133. }
  134. button {
  135. spacing: 0;
  136. text-color: @normal-foreground;
  137. }
  138. button selected {
  139. background-color: @selected-normal-background;
  140. text-color: @selected-normal-foreground;
  141. }
  142. inputbar {
  143. padding: 3px 6px 3px 12px ;
  144. border-spacing: 3;
  145. border: 6 3 6 9 ;
  146. border-radius: 9;
  147. spacing: 12px;
  148. margin: 3px 3px 3px 3px;
  149. border-color: @foreground;
  150. text-color: @foreground;
  151. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  152. }
  153. case-indicator {
  154. spacing: 0;
  155. text-color: @foreground;
  156. }
  157. entry {
  158. spacing: 0;
  159. text-color: @foreground;
  160. }
  161. prompt {
  162. spacing: 0;
  163. text-color: @foreground;
  164. }
  165. textbox-prompt-colon {
  166. expand: false;
  167. str: ":";
  168. margin: 0px 0.3000em 0.0000em 0.0000em ;
  169. text-color: inherit;
  170. }
  171.  
Advertisement
Add Comment
Please, Sign In to add comment