Advertisement
poetician

Rofi | 0004 Leopard 03

May 1st, 2022
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.01 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0004 Leopard ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: 0004 Leopard 03 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. red: #ad80344d;
  11. blue: #3943074d;
  12. lightfg: #e7ebdeb3;
  13. lightbg: #1e1e1e99;
  14. foreground: #be9b4ccc;
  15. background: #be9b4c1a;
  16. background-color: #0e0e0e1a;
  17. separatorcolor: @foreground;
  18. border-color: @foreground;
  19. selected-normal-foreground: @lightbg;
  20. selected-normal-background: @lightfg;
  21. selected-active-foreground: @background;
  22. selected-active-background: @blue;
  23. selected-urgent-foreground: @background;
  24. selected-urgent-background: @red;
  25. normal-foreground: @foreground;
  26. normal-background: @background;
  27. active-foreground: @blue;
  28. active-background: @background;
  29. urgent-foreground: @red;
  30. urgent-background: @background;
  31. alternate-normal-foreground: @foreground;
  32. alternate-normal-background: @lightbg;
  33. alternate-active-foreground: @blue;
  34. alternate-active-background: @lightbg;
  35. alternate-urgent-foreground: @red;
  36. alternate-urgent-background: @lightbg;
  37. spacing: 2;
  38. }
  39. window {
  40. width: 80%;
  41. anchor: south;
  42. location: south;
  43. background-color: @background;
  44. border: 10;
  45. border-radius: 26;
  46. padding: 10;
  47. padding-radius: 5;
  48. x-offset: 0px;
  49. y-offset: -60px;
  50. }
  51. mainbox {
  52. border: 10;
  53. border-radius: 16;
  54. padding: 10px ;
  55. }
  56. message {
  57. border: 6px 0px 8px 0px ;
  58. border-radius: 10;
  59. border-color: @separatorcolor;
  60. padding: 6px ;
  61. }
  62. textbox {
  63. text-color: @foreground;
  64. }
  65. listview {
  66. columns: 7;
  67. lines: 2;
  68. fixed-height: 0;
  69. border: 3px 0px 3px 0px ;
  70. border-radius: 26;
  71. border-color: @separatorcolor;
  72. spacing: 3px ;
  73. scrollbar: false;
  74. padding: 2px 0px 2px 0px ;
  75. }
  76. element-icon {
  77. size: 2.5em ;
  78. }
  79. element {
  80. orientation: horizontal;
  81. }
  82. element-text {
  83. vertical-align: 0.45;
  84. text-color: inherit;
  85. }
  86. element {
  87. border: 10;
  88. border-radius: 20;
  89. padding: 10px ;
  90. }
  91. element normal.normal {
  92. background-color: @normal-background;
  93. text-color: @normal-foreground;
  94. }
  95. element normal.urgent {
  96. background-color: @urgent-background;
  97. text-color: @urgent-foreground;
  98. }
  99. element normal.active {
  100. background-color: @active-background;
  101. text-color: @active-foreground;
  102. }
  103. element selected.normal {
  104. background-color: @selected-normal-background;
  105. text-color: @selected-normal-foreground;
  106. }
  107. element selected.urgent {
  108. background-color: @selected-urgent-background;
  109. text-color: @selected-urgent-foreground;
  110. }
  111. element selected.active {
  112. background-color: @selected-active-background;
  113. text-color: @selected-active-foreground;
  114. }
  115. element alternate.normal {
  116. background-color: @alternate-normal-background;
  117. text-color: @alternate-normal-foreground;
  118. }
  119. element alternate.urgent {
  120. background-color: @alternate-urgent-background;
  121. text-color: @alternate-urgent-foreground;
  122. }
  123. element alternate.active {
  124. background-color: @alternate-active-background;
  125. text-color: @alternate-active-foreground;
  126. }
  127. scrollbar {
  128. width: 4px ;
  129. border: 0;
  130. handle-color: @normal-foreground;
  131. handle-width: 8px ;
  132. padding: 0;
  133. }
  134. sidebar {
  135. border: 2px dash 0px 0px ;
  136. border-color: @separatorcolor;
  137. }
  138. button {
  139. spacing: 0;
  140. text-color: @normal-foreground;
  141. }
  142. button selected {
  143. background-color: @selected-normal-background;
  144. text-color: @selected-normal-foreground;
  145. }
  146. inputbar {
  147. padding: 5px 25px 5px 25px ;
  148. border-spacing: 4 4 4 4;
  149. border: 6px 1px 6px 1px ;
  150. border-radius: 14;
  151. spacing: 10px;
  152. margin: 0px 50px 5px 50px;
  153. border-color: @foreground;
  154. text-color: @normal-foreground;
  155. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  156. }
  157. case-indicator {
  158. spacing: 0;
  159. text-color: @normal-foreground;
  160. }
  161. entry {
  162. spacing: 0;
  163. text-color: @normal-foreground;
  164. }
  165. prompt {
  166. spacing: 0;
  167. text-color: @normal-foreground;
  168. }
  169. textbox-prompt-colon {
  170. expand: false;
  171. str: ":";
  172. margin: 0px 0.3000em 0.0000em 0.0000em ;
  173. text-color: inherit;
  174. }
  175.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement