Advertisement
poetician

Rofi | 0004 Leopard 02

May 1st, 2022
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.03 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0004 Leopard ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: 0004 Leopard 02 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. dark: #34362b;
  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: @dark;
  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: @foreground;
  27. normal-background: @background;
  28. active-foreground: @blue;
  29. active-background: @background;
  30. urgent-foreground: @red;
  31. urgent-background: @background;
  32. alternate-normal-foreground: @foreground;
  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. bw: 1;
  42. location: north;
  43. anchor: north;
  44. width: 80%;
  45. background-color: @background;
  46. border: 8;
  47. border-radius: 28;
  48. padding: 12;
  49. x-offset: 0px;
  50. y-offset: 40px;
  51. }
  52. mainbox {
  53. border: 8;
  54. border-radius: 20;
  55. padding: 8;
  56. }
  57. message {
  58. border: 8px 0px 6px 0px ;
  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: 5px 0px 3px 0px ;
  72. border-radius: 16;
  73. border-color: @separatorcolor;
  74. spacing: 10px ;
  75. scrollbar: false;
  76. padding: 4px ;
  77. }
  78. element-icon {
  79. size: 3em ;
  80. }
  81. element {
  82. orientation: vertical;
  83. }
  84. element-text {
  85. horizontal-align: 0.5;
  86. text-color: inherit;
  87. }
  88. element {
  89. border: 8;
  90. border-radius: 12;
  91. padding: 8px ;
  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 dash 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: 5 ;
  150. border-spacing: 0 ;
  151. border: 0px 0px 5px 0px ;
  152. border-radius: 20 ;
  153. spacing: 0 0 0 0 ;
  154. margin: 0px;
  155. border-color: @foreground;
  156. text-color: @normal-foreground;
  157. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  158. }
  159. case-indicator {
  160. spacing: 0;
  161. text-color: @normal-foreground;
  162. }
  163. entry {
  164. spacing: 0;
  165. text-color: @normal-foreground;
  166. }
  167. prompt {
  168. spacing: 0;
  169. text-color: @normal-foreground;
  170. }
  171. textbox-prompt-colon {
  172. expand: false;
  173. str: ":";
  174. margin: 0px 0.3000em 0.0000em 0.0000em ;
  175. text-color: inherit;
  176. }
  177.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement