Advertisement
poetician

Rofi | 0004 Leopard 04

May 1st, 2022
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.09 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0004 Leopard ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: 0004 Leopard 04 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. border: 1 8 2 12 ;
  91. border-radius: 12;
  92. padding: 8px ;
  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 dash 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: 5 ;
  151. border-spacing: 0 ;
  152. border: 1 8 2 12 ;
  153. border-radius: 20 ;
  154. spacing: 0 0 0 0 ;
  155. margin: 0px;
  156. border-color: @foreground;
  157. text-color: @normal-foreground;
  158. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  159. }
  160. case-indicator {
  161. spacing: 0;
  162. text-color: @normal-foreground;
  163. }
  164. entry {
  165. spacing: 0;
  166. text-color: @normal-foreground;
  167. }
  168. prompt {
  169. spacing: 0;
  170. text-color: @normal-foreground;
  171. }
  172. textbox-prompt-colon {
  173. expand: false;
  174. str: ":";
  175. margin: 0px 0.3000em 0.0000em 0.0000em ;
  176. text-color: inherit;
  177. }
  178.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement