Advertisement
poetician

Rofi | 0139 Windmill

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