Advertisement
poetician

Rofi | Fire Tower

Jun 7th, 2021
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.86 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0043 Misty Road ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-0043 Misty Road
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. clear: #00000000;
  11. red: #a3384a;
  12. blue: #0DB8F7;
  13. lightfg: #edffff;
  14. lightbg: #7B71CC;
  15. foreground: #dde7f4;
  16. background: #521676;
  17. background-color: #6C1B6A;
  18. separatorcolor: @foreground;
  19. border-color: @foreground;
  20. selected-normal-foreground: @lightbg;
  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. background-color: @background;
  42. border: 0 dash 0 6 ;
  43. border-radius: 0;
  44. padding: 0;
  45. x-offset: 40px;
  46. y-offset: 0px;
  47. }
  48. mainbox {
  49. border: 3;
  50. border-color: @clear;
  51. border-radius: 15;
  52. padding: 10;
  53. }
  54. message {
  55. border: 1px dash 0px 0px ;
  56. border-radius: 15;
  57. border-color: @separatorcolor;
  58. padding: 10px ;
  59. }
  60. textbox {
  61. text-color: @foreground;
  62. }
  63. listview {
  64. fixed-height: 0;
  65. border: 0px dash 0px 0px ;
  66. border-radius: 15;
  67. border-color: @separatorcolor;
  68. spacing: 8px ;
  69. scrollbar: false;
  70. padding: 4px 4px 4px 4px ;
  71. }
  72. element-icon {
  73. size: 2em ;
  74. }
  75. element {
  76. orientation: vertical;
  77. }
  78. element-text {
  79. horizontal-align: 0.5;
  80. }
  81. element {
  82. border: 4px dash 0px 6px;
  83. border-radius: 12;
  84. border-color: @red;
  85. padding: 10px ;
  86. }
  87. element normal.normal {
  88. background-color: @normal-background;
  89. text-color: @normal-foreground;
  90. }
  91. element normal.urgent {
  92. background-color: @urgent-background;
  93. text-color: @urgent-foreground;
  94. }
  95. element normal.active {
  96. background-color: @active-background;
  97. text-color: @active-foreground;
  98. }
  99. element selected.normal {
  100. background-color: @selected-normal-background;
  101. text-color: @selected-normal-foreground;
  102. }
  103. element selected.urgent {
  104. background-color: @selected-urgent-background;
  105. text-color: @selected-urgent-foreground;
  106. }
  107. element selected.active {
  108. background-color: @selected-active-background;
  109. text-color: @selected-active-foreground;
  110. }
  111. element alternate.normal {
  112. background-color: @alternate-normal-background;
  113. text-color: @alternate-normal-foreground;
  114. }
  115. element alternate.urgent {
  116. background-color: @alternate-urgent-background;
  117. text-color: @alternate-urgent-foreground;
  118. }
  119. element alternate.active {
  120. background-color: @alternate-active-background;
  121. text-color: @alternate-active-foreground;
  122. }
  123. scrollbar {
  124. width: 4px ;
  125. border: 0;
  126. handle-color: @normal-foreground;
  127. handle-width: 8px ;
  128. padding: 0;
  129. }
  130. sidebar {
  131. border: 2px dash 0px 0px ;
  132. border-color: @separatorcolor;
  133. }
  134. button {
  135. spacing: 0;
  136. text-color: @normal-foreground;
  137. }
  138. button selected {
  139. background-color: @selected-normal-background;
  140. text-color: @selected-normal-foreground;
  141. }
  142. inputbar {
  143. padding: 4px;
  144. border-spacing: 0 dash 12 0;
  145. border: 8px dash 4px 0px ;
  146. border-radius: 4 4 0 0 ;
  147. spacing: 8px;
  148. margin: 0px dash 30px 2px ;
  149. border-color: @foreground;
  150. text-color: @black;
  151. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  152. }
  153. case-indicator {
  154. spacing: 0;
  155. text-color: @normal-foreground;
  156. }
  157. entry {
  158. spacing: 0;
  159. text-color: @normal-foreground;
  160. }
  161. prompt {
  162. spacing: 0;
  163. text-color: @normal-foreground;
  164. }
  165. textbox-prompt-colon {
  166. expand: false;
  167. str: ":";
  168. margin: 0px 0.3000em 0.0000em 0.0000em ;
  169. text-color: inherit;
  170. }
  171.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement