poetician

Rofi | extreme golden 02G

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