Advertisement
poetician

Rofi | extreme golden 03

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