Advertisement
poetician

Rofi | 0136 Leaf

Jun 5th, 2021 (edited)
103
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 oomox-Old Mill ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-Old Mill
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. darkbrown: #4a35084d;
  11. brown: #503c10;
  12. red: #5e4e1dcc;
  13. blue: #826d3fcc;
  14. lightfg: #a08b5c4d;
  15. lightbg: #0000004d;
  16. foreground: #F7E3AD;
  17. background: #432f0033;
  18. background-color: #432f001a;
  19. separatorcolor: @foreground;
  20. border-color: @lightfg;
  21. selected-normal-foreground: @foreground;
  22. selected-normal-background: @lightfg;
  23. selected-active-foreground: @background;
  24. selected-active-background: @blue;
  25. selected-urgent-foreground: @background;
  26. selected-urgent-background: @red;
  27. normal-foreground: @foreground;
  28. normal-background: @dargreen;
  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: @lightbg;
  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: 5;
  44. border-radius: 10;
  45. padding: 15;
  46. x-offset: 240px;
  47. y-offset: 240px;
  48. }
  49. mainbox {
  50. border: 5;
  51. border-radius: 10;
  52. padding: 15;
  53. }
  54. message {
  55. border: 5px dash 0px 0px ;
  56. border-radius: 10;
  57. border-color: @separatorcolor;
  58. padding: 15px ;
  59. }
  60. textbox {
  61. text-color: @foreground;
  62. border: 5px;
  63. border-radius: 10px;
  64. padding: 10px;
  65. }
  66. listview {
  67. fixed-height: 0;
  68. border: 5px dash 5px 5px ;
  69. border-radius: 10;
  70. border-color: @separatorcolor;
  71. spacing: 15px ;
  72. scrollbar: false;
  73. padding: 15px 15px 15px ;
  74. }
  75. element-icon {
  76. size: 2.5em ;
  77. }
  78. element {
  79. orientation: horizontal;
  80. }
  81. element-text {
  82. vertical-align: 0.5;
  83. }
  84. element {
  85. border: 5;
  86. border-radius: 10;
  87. border-color: @red;
  88. padding: 5px ;
  89. }
  90. element normal.normal {
  91. background-color: @normal-background;
  92. text-color: @normal-foreground;
  93. }
  94. element normal.urgent {
  95. background-color: @urgent-background;
  96. text-color: @urgent-foreground;
  97. }
  98. element normal.active {
  99. background-color: @active-background;
  100. text-color: @active-foreground;
  101. }
  102. element selected.normal {
  103. background-color: @selected-normal-background;
  104. text-color: @selected-normal-foreground;
  105. }
  106. element selected.urgent {
  107. background-color: @selected-urgent-background;
  108. text-color: @selected-urgent-foreground;
  109. }
  110. element selected.active {
  111. background-color: @selected-active-background;
  112. text-color: @selected-active-foreground;
  113. }
  114. element alternate.normal {
  115. background-color: @alternate-normal-background;
  116. text-color: @alternate-normal-foreground;
  117. }
  118. element alternate.urgent {
  119. background-color: @alternate-urgent-background;
  120. text-color: @alternate-urgent-foreground;
  121. }
  122. element alternate.active {
  123. background-color: @alternate-active-background;
  124. text-color: @alternate-active-foreground;
  125. }
  126. scrollbar {
  127. width: 4px ;
  128. border: 0;
  129. handle-color: @normal-foreground;
  130. handle-width: 8px ;
  131. padding: 0;
  132. }
  133. sidebar {
  134. border: 2px dash 0px 0px ;
  135. border-color: @separatorcolor;
  136. }
  137. button {
  138. spacing: 0;
  139. text-color: @normal-foreground;
  140. }
  141. button selected {
  142. background-color: @selected-normal-background;
  143. text-color: @selected-normal-foreground;
  144. }
  145. inputbar {
  146. padding: 5 ;
  147. border-spacing: 5 ;
  148. border: 5px;
  149. border-radius: 10;
  150. spacing: 5 0 5 0 ;
  151. margin: 5 0 5 0 ;
  152. border-color: @foreground;
  153. text-color: @foreground;
  154. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  155. }
  156. case-indicator {
  157. spacing: 0;
  158. text-color: @foreground;
  159. }
  160. entry {
  161. spacing: 0;
  162. text-color: @foreground;
  163. }
  164. prompt {
  165. spacing: 0;
  166. text-color: @foreground;
  167. }
  168. textbox-prompt-colon {
  169. expand: false;
  170. str: ":";
  171. margin: 0px 0.3000em 0.0000em 0.0000em ;
  172. text-color: inherit;
  173. }
  174.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement