poetician

Rofi | 0004 Leopard 04G

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