Advertisement
poetician

Rofi | 0139 Windmill 03

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