Advertisement
poetician

Rofi | taupe-purple-lfg

Jun 3rd, 2021
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.98 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. yellow: #a87d5080;
  11. black: #000000;
  12. red: #a85a44;
  13. blue: #9f344a80;
  14. lightfg: #f2eee6;
  15. lightbg: #A7936380;
  16. foreground: #98264fb3;
  17. background: #850d5c80;
  18. background-color: #500d7180;
  19. separatorcolor: @foreground;
  20. border-color: @lightbg;
  21. selected-normal-foreground: @lightfg;
  22. selected-normal-background: @foreground;
  23. selected-active-foreground: @background-color;
  24. selected-active-background: @blue;
  25. selected-urgent-foreground: @background;
  26. selected-urgent-background: @red;
  27. normal-foreground: @lightfg;
  28. normal-background: @background;
  29. active-foreground: @blue;
  30. active-background: @background;
  31. urgent-foreground: @red;
  32. urgent-background: @background;
  33. alternate-normal-foreground: @lightfg;
  34. alternate-normal-background: @yellow;
  35. alternate-active-foreground: @blue;
  36. alternate-active-background: @lightbg;
  37. alternate-urgent-foreground: @red;
  38. alternate-urgent-background: @lightbg;
  39. spacing: 2;
  40. }
  41. window {
  42. background-color: @background;
  43. border: 0 0 0 30;
  44. border-radius: 20;
  45. border-color: @blue;
  46. padding: 0 0 5 0;
  47. x-offset: 180;
  48. y-offset: -180;
  49. }
  50. mainbox {
  51. border: 0 0 0 20;
  52. border-radius: 20;
  53. border-color: @blue;
  54. padding: 0 0 5 0;
  55. }
  56. message {
  57. border: 0px 0px 0px 10px ;
  58. border-radius: 20;
  59. border-color: @blue;
  60. padding: 10px 0px 5px 0px;
  61. }
  62. textbox {
  63. text-color: @foreground;
  64. }
  65. listview {
  66. fixed-height: 0;
  67. border: 0px 0px 0px 20px ;
  68. border-radius: 20;
  69. border-color: #00000000;
  70. spacing: 10px ;
  71. scrollbar: false;
  72. padding: 5px 0px 0px 0px;
  73. }
  74. element-icon {
  75. size: 3em ;
  76. }
  77. element {
  78. orientation: horizontal;
  79. }
  80. element-text {
  81. vertical-align: 0.45;
  82. }
  83. element {
  84. border: 0 0 0 30;
  85. border-color: @blue;
  86. border-radius: 20;
  87. padding: 5px ;
  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: @lightfg;
  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: 5px 5px 5px 5px;
  148. border: 0px 0px 0px 20px;
  149. spacing: 10px;
  150. margin: 5px 5px 5px;
  151. border-color: @lightfg;
  152. text-color: @lightfg;
  153. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];}
  154. case-indicator {
  155. spacing: 5;
  156. text-color: @lightfg;
  157. }
  158. case-indicator {
  159. spacing: 0;
  160. text-color: @lightfg;
  161. }
  162. entry {
  163. spacing: 0;
  164. text-color: @lightfg;
  165. }
  166. prompt {
  167. spacing: 0;
  168. text-color: @lightfg;
  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