Advertisement
poetician

Rofi | 0137 Flower-Gradient-SU

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