Advertisement
poetician

Rofi | 0136 Leaf 06

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