Advertisement
poetician

Rofi | 0136 Leaf 02

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