Advertisement
poetician

Rofi | 0139 Windmill 03-T

Jun 9th, 2021
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.68 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. text: #FFECD4;
  11. fuchsia: #F0309Fb3;
  12. orange: #F66D3F80;
  13. red: #C7247380;
  14. blue: #4878CA80;
  15. lightfg: #FFF2D880;
  16. lightbg: #DCABA480;
  17. foreground: #E6917D80;
  18. background: #51363B80;
  19. background-color: #51363B80;
  20. separatorcolor: @foreground;
  21. border-color: @foreground;
  22. selected-normal-foreground: @text;
  23. selected-normal-background: @orange;
  24. selected-active-foreground: @background;
  25. selected-active-background: @fuchsia;
  26. selected-urgent-foreground: @background;
  27. selected-urgent-background: @red;
  28. normal-foreground: @text;
  29. normal-background: @lightbg;
  30. active-foreground: @blue;
  31. active-background: @red;
  32. urgent-foreground: @red;
  33. urgent-background: @background;
  34. alternate-normal-foreground: @text;
  35. alternate-normal-background: @red;
  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: 10 0 0 0;
  45. padding: 6 0 0 0;
  46. x-offset: 40;
  47. y-offset: 300;
  48. }
  49. mainbox {
  50. border: 10 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: 6px 0px 0px 0px ;
  64. border-color: @separatorcolor;
  65. spacing: 6px ;
  66. scrollbar: false;
  67. padding: 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: 10 0 10 0;
  80. padding: 5px ;
  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: 5px;
  141. spacing: 10px;
  142. margin: 5px 0px 5px 0px ;
  143. border-color: @foreground;
  144. text-color: @lightfg;
  145. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];}
  146. case-indicator {
  147. spacing: 0;
  148. text-color: @lightfg;
  149. }
  150. entry {
  151. spacing: 0;
  152. text-color: @lightfg;
  153. }
  154. prompt {
  155. spacing: 0;
  156. text-color: @lightfg;
  157. }
  158. textbox-prompt-colon {
  159. expand: false;
  160. text-color: @lightfg;
  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