Advertisement
poetician

Rofi | 0137 Flower-Gradient-S

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