Advertisement
poetician

Rofi | 0004 Leopard 1L

May 15th, 2022
92
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: 0004 Leopard 1L Poetician Edition (https://gitlab.com/Poetician)
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. clear: #00000000;
  11. red: #EBBD6F4d;
  12. blue: #7A774A80;
  13. lightfg: #FAFDDD;
  14. lightbg: #B1863299;
  15. foreground: #F4CF70cc;
  16. background: #7B6C2833;
  17. background-color: #60542F33;
  18. separatorcolor: @foreground;
  19. border-color: @foreground;
  20. selected-normal-foreground: @text2;
  21. selected-normal-background: @lightfg;
  22. selected-active-foreground: @background;
  23. selected-active-background: @blue;
  24. selected-urgent-foreground: @background;
  25. selected-urgent-background: @red;
  26. normal-foreground: @text;
  27. normal-background: @background;
  28. active-foreground: @blue;
  29. active-background: @background;
  30. urgent-foreground: @red;
  31. urgent-background: @background;
  32. alternate-normal-foreground: @text;
  33. alternate-normal-background: @lightbg;
  34. alternate-active-foreground: @blue;
  35. alternate-active-background: @lightbg;
  36. alternate-urgent-foreground: @red;
  37. alternate-urgent-background: @lightbg;
  38. spacing: 2;
  39. }
  40. window {
  41. anchor: southwest;
  42. location: southwest;
  43. width: 60%;
  44. x-offset: 65px;
  45. y-offset: -50px;
  46. background-color: @background;
  47. border-radius: 15;
  48. border: 1;
  49. padding: 16;
  50. }
  51. mainbox {
  52. border: 1;
  53. border-radius: 12;
  54. padding: 16;
  55. }
  56. message {
  57. border: 1px 0px 0px 0px ;
  58. border-radius: 15;
  59. border-color: @separatorcolor;
  60. padding: 1px ;
  61. }
  62. textbox {
  63. text-color: @foreground;
  64. }
  65. element-icon {
  66. size: 2.2em ;
  67. }
  68. element {
  69. orientation: horizontal;
  70. }
  71. element-text {
  72. vertical-align: 0.45;
  73. text-color: inherit;
  74. }
  75. listview {
  76. lines: 3;
  77. columns: 3;
  78. fixed-height: 0;
  79. border: 1px ;
  80. border-radius: 18px;
  81. border-color: @separatorcolor;
  82. spacing: 12px ;
  83. scrollbar: false;
  84. padding: 4px 4px 4px 4px ;
  85. }
  86. element {
  87. children: [element-icon, element-text];
  88. background-image: linear-gradient(to left, grey/40%, white/30%, black/30%);
  89. border: 1;
  90. border-radius: 15;
  91. padding: 4px ;
  92. }
  93. element normal.normal {
  94. background-color: @normal-background;
  95. text-color: @normal-foreground;
  96. }
  97. element normal.urgent {
  98. background-color: @urgent-background;
  99. text-color: @urgent-foreground;
  100. }
  101. element normal.active {
  102. background-color: @active-background;
  103. text-color: @active-foreground;
  104. }
  105. element selected.normal {
  106. background-color: @selected-normal-background;
  107. text-color: @selected-normal-foreground;
  108. }
  109. element selected.urgent {
  110. background-color: @selected-urgent-background;
  111. text-color: @selected-urgent-foreground;
  112. }
  113. element selected.active {
  114. background-color: @selected-active-background;
  115. text-color: @selected-active-foreground;
  116. }
  117. element alternate.normal {
  118. background-color: @alternate-normal-background;
  119. text-color: @alternate-normal-foreground;
  120. }
  121. element alternate.urgent {
  122. background-color: @alternate-urgent-background;
  123. text-color: @alternate-urgent-foreground;
  124. }
  125. element alternate.active {
  126. background-color: @alternate-active-background;
  127. text-color: @alternate-active-foreground;
  128. }
  129. scrollbar {
  130. width: 4px ;
  131. border: 0;
  132. handle-color: @normal-foreground;
  133. handle-width: 8px ;
  134. padding: 0;
  135. }
  136. sidebar {
  137. border: 2px 0px 0px 0px ;
  138. border-color: @separatorcolor;
  139. }
  140. button {
  141. spacing: 0;
  142. text-color: @normal-foreground;
  143. }
  144. button selected {
  145. background-color: @selected-normal-background;
  146. text-color: @selected-normal-foreground;
  147. }
  148. inputbar {
  149. padding: 8px;
  150. border-spacing: 8;
  151. border: 1;
  152. border-radius: 9;
  153. spacing: 8px;
  154. margin: 8px;
  155. border-color: @foreground;
  156. text-color: @text2;
  157. background-color: @clear;
  158. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  159. }
  160. case-indicator {
  161. spacing: 0;
  162. background-color: @clear;
  163. text-color: @text2;
  164. }
  165. entry {
  166. spacing: 0;
  167. background-color: @clear;
  168. text-color: @text2;
  169. }
  170. prompt {
  171. spacing: 0;
  172. background-color: @clear;
  173. text-color: @text2;
  174. }
  175. textbox-prompt-colon {
  176. expand: false;
  177. background-color: @clear;
  178. str: ":";
  179. margin: 0px 0.3000em 0.0000em 0.0000em ;
  180. text-color: inherit;
  181. }
  182.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement