Advertisement
poetician

Rofi | 0137 Flower Gradient 02

May 24th, 2021
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.08 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. red: rgba ( 110, 78, 145, 50 % );
  11. blue: rgba ( 38, 50, 104, 50 % );
  12. lightfg: rgba ( 255, 255, 255, 100 % );
  13. lightbg: rgba ( 30, 18, 38, 40 % );
  14. foreground: rgba ( 254, 230, 231, 50 % );
  15. background: rgba ( 30, 30, 30, 20 % );
  16. background-color: rgba ( 30, 18, 38, 20 % );
  17. separatorcolor: @foreground;
  18. border-color: @foreground;
  19. selected-normal-foreground: @lightbg;
  20. selected-normal-background: @lightfg;
  21. selected-active-foreground: @background;
  22. selected-active-background: @blue;
  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: @background;
  29. urgent-foreground: @red;
  30. urgent-background: @background;
  31. alternate-normal-foreground: @foreground;
  32. alternate-normal-background: @lightbg;
  33. alternate-active-foreground: @blue;
  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: 30;
  42. border-radius: 20;
  43. padding: 1;
  44. x-offset: -80;
  45. y-offset: -10;
  46. }
  47. mainbox {
  48. border: 20;
  49. border-radius: 0;
  50. padding: 1;
  51. }
  52. message {
  53. border: 10px dash 0px 0px ;
  54. border-radius: 20;
  55. border-color: @separatorcolor;
  56. padding: 1px ;
  57. }
  58. textbox {
  59. text-color: @foreground;
  60. }
  61. listview {
  62. fixed-height: 0;
  63. border: 10px dash 0px 0px ;
  64. border-radius: 20;
  65. border-color: @separatorcolor;
  66. spacing: 2px ;
  67. scrollbar: false;
  68. padding: 3px 0px 0px ;
  69. }
  70. element {
  71. border: 0;
  72. border-radius: 20;
  73. padding: 20px ;
  74. }
  75. element-icon {
  76. size: 3em ;
  77. }
  78. element {
  79. orientation: horizontal;
  80. }
  81. element-text {
  82. vertical-align: 0.45;
  83. }
  84. element {
  85. border: 20;
  86. border-color: @background;
  87. border-radius: 20;
  88. padding: 10px ;
  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: 40%;
  147. padding: 5px;
  148. border-spacing: 5px 0 0 0;
  149. border: 5px;
  150. spacing: 10px;
  151. margin: 5px 5px 5px;
  152. border-color: @foreground;
  153. text-color: @normal-foreground;
  154. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];}
  155. case-indicator {
  156. spacing: 0;
  157. text-color: @normal-foreground;}
  158. case-indicator {
  159. spacing: 0;
  160. text-color: @normal-foreground;
  161. }
  162. entry {
  163. spacing: 0;
  164. text-color: @normal-foreground;
  165. }
  166. prompt {
  167. spacing: 0;
  168. text-color: @normal-foreground;
  169. }
  170. textbox-prompt-colon {
  171. expand: false;
  172. str: ":";
  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