Advertisement
poetician

Rofi | 0139 Windmill 04

Jun 9th, 2021
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.72 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0139 Windmill ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-0139 Windmill
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. pink: #DF1D8F66;
  11. yellow: #F1D45C66;
  12. orange: #864E4F;
  13. red: #BF695F1a;
  14. blue: #917C5166;
  15. lightfg: #6476731a;
  16. lightbg: #333638cc;
  17. foreground: #FEE6D0cc;
  18. background: #864E4F66;
  19. background-color: #00000000;
  20. separatorcolor: @foreground;
  21. border-color: @foreground;
  22. selected-normal-foreground: @foreground;
  23. selected-normal-background: @yellow;
  24. selected-active-foreground: @background;
  25. selected-active-background: @orange;
  26. selected-urgent-foreground: @background;
  27. selected-urgent-background: @red;
  28. normal-foreground: @foreground;
  29. normal-background: @background;
  30. active-foreground: @blue;
  31. active-background: @red;
  32. urgent-foreground: @red;
  33. urgent-background: @background;
  34. alternate-normal-foreground: @foreground;
  35. alternate-normal-background: @pink;
  36. alternate-active-foreground: @red;
  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 0 10 0;
  45. padding: 0 0 2 0;
  46. x-offset: 40;
  47. y-offset: 300;
  48. }
  49. mainbox {
  50. border: 9 0 0 0;
  51. padding: 0;
  52. }
  53. message {
  54. border: 10px dash 0px 0px ;
  55. border-color: @separatorcolor;
  56. padding: 0px ;
  57. }
  58. textbox {
  59. text-color: @foreground;
  60. }
  61. listview {
  62. fixed-height: 0;
  63. border: 7px 0px 0px 0px ;
  64. border-color: @separatorcolor;
  65. spacing: 5px ;
  66. scrollbar: false;
  67. padding: 5px 0px 5px 0px;
  68. }
  69. element-icon {
  70. size: 2.5em ;
  71. }
  72. element-text{
  73. horizontal-align: 0.50;
  74. }
  75. element {
  76. orientation: vertical;
  77. }
  78. element {
  79. border: 7 0 0 0 ;
  80. padding: 5 ;
  81. }
  82. element normal.normal {
  83. background-color: @normal-background;
  84. text-color: @normal-foreground;
  85. }
  86. element normal.urgent {
  87. background-color: @urgent-background;
  88. text-color: @urgent-foreground;
  89. }
  90. element normal.active {
  91. background-color: @active-background;
  92. text-color: @active-foreground;
  93. }
  94. element selected.normal {
  95. background-color: @selected-normal-background;
  96. text-color: @selected-normal-foreground;
  97. }
  98. element selected.urgent {
  99. background-color: @selected-urgent-background;
  100. text-color: @selected-urgent-foreground;
  101. }
  102. element selected.active {
  103. background-color: @selected-active-background;
  104. text-color: @selected-active-foreground;
  105. }
  106. element alternate.normal {
  107. background-color: @alternate-normal-background;
  108. text-color: @alternate-normal-foreground;
  109. }
  110. element alternate.urgent {
  111. background-color: @alternate-urgent-background;
  112. text-color: @alternate-urgent-foreground;
  113. }
  114. element alternate.active {
  115. background-color: @alternate-active-background;
  116. text-color: @alternate-active-foreground;
  117. }
  118. scrollbar {
  119. width: 4px ;
  120. border: 0;
  121. handle-color: @normal-foreground;
  122. handle-width: 8px ;
  123. padding: 0;
  124. }
  125. sidebar {
  126. border: 2px dash 0px 0px ;
  127. border-color: @separatorcolor;
  128. }
  129. button {
  130. spacing: 4;
  131. text-color: @normal-foreground;
  132. }
  133. button selected {
  134. background-color: @selected-normal-background;
  135. text-color: @selected-normal-foreground;
  136. }
  137. inputbar {
  138. padding: 5px;
  139. border-spacing: 0 0 0 0;
  140. border: 6 5 6 5 ;
  141. spacing: 10px;
  142. margin: 5px 0px 5px 0px ;
  143. border-color: @foreground;
  144. text-color: @normal-foreground;
  145. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  146. }
  147. case-indicator {
  148. spacing: 0;
  149. text-color: @normal-foreground;
  150. }
  151. entry {
  152. spacing: 0;
  153. text-color: @normal-foreground;
  154. }
  155. prompt {
  156. spacing: 0;
  157. text-color: @normal-foreground;
  158. }
  159. textbox-prompt-colon {
  160. expand: false;
  161. str: ":";
  162. margin: 0px 0.3000em 0.0000em 0.0000em ;
  163. text-color: inherit;
  164. }
  165.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement