poetician

Rofi | 0004 Leopard-1L | for file-browser mode

Oct 31st, 2021
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.17 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0004 Leopard ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-0004 Leopard
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. text: #f7e768;
  11. clear: #00000000;
  12. red: #EBBD6F4d;
  13. blue: #7A774A80;
  14. lightfg: #FAFDDD;
  15. lightbg: #B1863299;
  16. foreground: #F4CF70cc;
  17. background: #7B6C2833;
  18. background-color: #60542F33;
  19. separatorcolor: @foreground;
  20. border-color: @foreground;
  21. selected-normal-foreground: @text2;
  22. selected-normal-background: @lightfg;
  23. selected-active-foreground: @background;
  24. selected-active-background: @blue;
  25. selected-urgent-foreground: @background;
  26. selected-urgent-background: @red;
  27. normal-foreground: @text;
  28. normal-background: @background;
  29. active-foreground: @blue;
  30. active-background: @background;
  31. urgent-foreground: @red;
  32. urgent-background: @background;
  33. alternate-normal-foreground: @text;
  34. alternate-normal-background: @lightbg;
  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. anchor: southwest;
  43. location: southwest;
  44. width: 60%;
  45. x-offset: 20px;
  46. y-offset: -60px;
  47. background-color: @background;
  48. border-radius: 15;
  49. border: 1;
  50. padding: 16;
  51. }
  52. mainbox {
  53. border: 1;
  54. border-radius: 12;
  55. padding: 16;
  56. }
  57. message {
  58. border: 1px 1px 1px 1px ;
  59. border-radius: 10;
  60. border-color: @separatorcolor;
  61. padding: 3px ;
  62. }
  63. textbox {
  64. text-color: @foreground;
  65. }
  66. element-icon {
  67. size: 2.2em ;
  68. }
  69. element {
  70. orientation: horizontal;
  71. }
  72. element-text {
  73. vertical-align: 0.45;
  74. text-color: inherit;
  75. }
  76. listview {
  77. lines: 3;
  78. columns: 5;
  79. fixed-height: 0;
  80. border: 1px ;
  81. border-radius: 18px;
  82. border-color: @separatorcolor;
  83. spacing: 12px ;
  84. scrollbar: false;
  85. padding: 4px 4px 4px 4px ;
  86. }
  87. element {
  88. children: [element-icon, element-text];
  89. background-image: linear-gradient(to left, grey/40%, white/30%, black/30%);
  90. border: 1;
  91. border-radius: 15;
  92. padding: 4px ;
  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: 4px ;
  132. border: 0;
  133. handle-color: @normal-foreground;
  134. handle-width: 8px ;
  135. padding: 0;
  136. }
  137. sidebar {
  138. border: 2px 0px 0px 0px ;
  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. padding: 8;
  151. border-spacing: 4;
  152. border: 1;
  153. border-radius: 8;
  154. spacing: 0px;
  155. margin: 0 225 12 225;
  156. border-color: @foreground;
  157. text-color: @text;
  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: @text;
  165. }
  166. entry {
  167. spacing: 0;
  168. background-color: @clear;
  169. text-color: @text;
  170. }
  171. prompt {
  172. spacing: 0;
  173. background-color: @clear;
  174. text-color: @text;
  175. }
  176. textbox-prompt-colon {
  177. expand: false;
  178. background-color: @clear;
  179. str: ":";
  180. margin: 0.0em 0.0em 0.0em 0.0em ;
  181. text-color: inherit;
  182. }
  183.  
Advertisement
Add Comment
Please, Sign In to add comment