poetician

Rofi | avocado-02

Jun 21st, 2021
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.80 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: #A3BF4566;
  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: 6;
  44. border-radius: 9;
  45. padding: 4;
  46. x-offset: 0px;
  47. y-offset: 0px;
  48. }
  49. mainbox {
  50. border: 6;
  51. border-radius: 9;
  52. padding: 4;
  53. }
  54. message {
  55. border: 1px dash 0px 0px ;
  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: 4px dash 0px 0px ;
  66. border-radius: 0;
  67. border-color: @separatorcolor;
  68. spacing: 9px ;
  69. scrollbar: false;
  70. padding: 4px 9px 4px 9px ;
  71. layout: vertical;
  72. }
  73. element-icon {
  74. size: 2.2em;
  75. }
  76. element {
  77. orientation: vertical;
  78. }
  79. element-text {
  80. horizontal-align: 0.45;
  81. }
  82. element {
  83. border: 4;
  84. border-radius: 9;
  85. padding: 4px ;
  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. background-color: @background;
  144. padding: 6px;
  145. border-spacing: 6;
  146. border: 6 3 6 3 ;
  147. border-radius: 6 6 3 3 ;
  148. spacing: 6px;
  149. margin: 3px ;
  150. border-color: @blue;
  151. text-color: @green;
  152. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  153. }
  154. case-indicator {
  155. spacing: 0;
  156. text-color: @normal-foreground;
  157. }
  158. entry {
  159. spacing: 0;
  160. text-color: @green;
  161. }
  162. prompt {
  163. spacing: 0;
  164. text-color: @green;
  165. }
  166. textbox-prompt-colon {
  167. expand: false;
  168. str: ":";
  169. margin: 0px 0.3000em 0.0000em 0.0000em ;
  170. text-color: inherit;
  171. }
  172.  
Advertisement
Add Comment
Please, Sign In to add comment