Advertisement
poetician

Rofi | 0004 Leopard 02D

May 1st, 2022
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.92 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. red: #EBBD6F4d;
  11. blue: #7A774A80;
  12. lightfg: #FAFDDD;
  13. lightbg: #B1863299;
  14. foreground: #F4CF70cc;
  15. background: #7B6C2833;
  16. background-color: #60542F33;
  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. background-color: @background;
  42. border: 5px dash 0px 0px ;
  43. border-radius: 28;
  44. padding: 12;
  45. x-offset: 40px;
  46. y-offset: 290px;
  47. }
  48. mainbox {
  49. border: 8;
  50. border-radius: 20;
  51. padding: 8;
  52. }
  53. message {
  54. border: 10px 0px 0px 0px ;
  55. border-radius: 16;
  56. border-color: @separatorcolor;
  57. padding: 10px ;
  58. spacing: 10px;
  59. }
  60. textbox {
  61. text-color: @foreground;
  62. }
  63. listview {
  64. columns: 7;
  65. lines: 2;
  66. fixed-height: 0;
  67. border: 5px dash 0px 0px ;
  68. border-radius: 16;
  69. border-color: @separatorcolor;
  70. spacing: 10px ;
  71. scrollbar: false;
  72. padding: 4px ;
  73. }
  74. element-icon {
  75. size: 3em ;
  76. }
  77. element {
  78. orientation: vertical;
  79. }
  80. element-text {
  81. horizontal-align: 0.5;
  82. text-color: inherit;
  83. }
  84. element {
  85. border: 8;
  86. border-radius: 12;
  87. padding: 8px ;
  88. }
  89. element normal.normal {
  90. background-color: @normal-background;
  91. text-color: @normal-foreground;
  92. }
  93. element normal.urgent {
  94. background-color: @urgent-background;
  95. text-color: @urgent-foreground;
  96. }
  97. element normal.active {
  98. background-color: @active-background;
  99. text-color: @active-foreground;
  100. }
  101. element selected.normal {
  102. background-color: @selected-normal-background;
  103. text-color: @selected-normal-foreground;
  104. }
  105. element selected.urgent {
  106. background-color: @selected-urgent-background;
  107. text-color: @selected-urgent-foreground;
  108. }
  109. element selected.active {
  110. background-color: @selected-active-background;
  111. text-color: @selected-active-foreground;
  112. }
  113. element alternate.normal {
  114. background-color: @alternate-normal-background;
  115. text-color: @alternate-normal-foreground;
  116. }
  117. element alternate.urgent {
  118. background-color: @alternate-urgent-background;
  119. text-color: @alternate-urgent-foreground;
  120. }
  121. element alternate.active {
  122. background-color: @alternate-active-background;
  123. text-color: @alternate-active-foreground;
  124. }
  125. scrollbar {
  126. width: 4px ;
  127. border: 0;
  128. handle-color: @normal-foreground;
  129. handle-width: 8px ;
  130. padding: 0;
  131. }
  132. sidebar {
  133. border: 2px dash 0px 0px ;
  134. border-color: @separatorcolor;
  135. }
  136. button {
  137. spacing: 0;
  138. text-color: @normal-foreground;
  139. }
  140. button selected {
  141. background-color: @selected-normal-background;
  142. text-color: @selected-normal-foreground;
  143. }
  144. inputbar {
  145. padding: 5 ;
  146. border-spacing: 0 ;
  147. border: 0px dash 0px 5px ;
  148. border-radius: 20 ;
  149. spacing: 0 0 0 0 ;
  150. margin: 0px;
  151. border-color: @foreground;
  152. text-color: @normal-foreground;
  153. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  154. }
  155. case-indicator {
  156. spacing: 0;
  157. text-color: @normal-foreground;
  158. }
  159. entry {
  160. spacing: 0;
  161. text-color: @normal-foreground;
  162. }
  163. prompt {
  164. spacing: 0;
  165. text-color: @normal-foreground;
  166. }
  167. textbox-prompt-colon {
  168. expand: false;
  169. str: ":";
  170. margin: 0px 0.3000em 0.0000em 0.0000em ;
  171. text-color: inherit;
  172. }
  173.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement