poetician

Rofi | Ail-04

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