Advertisement
poetician

Rofi | 0024 Field and Cloud 04

Jun 3rd, 2021
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.18 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0024 Montane ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-0024 Montane
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. black: #00000000;
  11. red: rgba ( 54, 74, 88, 70 % );
  12. blue: rgba ( 173, 203, 198, 80 % );
  13. lightfg: rgba ( 186, 209, 203, 90 % );
  14. lightbg: rgba ( 17, 17, 17, 30 % );
  15. foreground: rgba ( 195, 202, 58, 90 % );
  16. background: rgba ( 0, 18, 0, 30 % );
  17. background-color: rgba ( 0, 18, 0, 30 % );
  18. separatorcolor: @foreground;
  19. border-color: @foreground;
  20. selected-normal-foreground: @red;
  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: 15 1 10 1;
  43. border-radius: 25;
  44. padding: 5 1 5 1;
  45. x-offset: -60;
  46. y-offset: -20;
  47. }
  48. mainbox {
  49. border: 15 1 10 1;
  50. padding: 0 1 5 1;
  51. border-radius: 25;
  52. }
  53. message {
  54. border: 5px dash 1px 10px ;
  55. border-radius: 25;
  56. border-color: @separatorcolor;
  57. padding: 5px 1px 5px 1px ;
  58. }
  59. textbox {
  60. text-color: @foreground;
  61. border: 15 1 10 1;
  62. padding: 5 1 5 1;
  63. border-radius: 25;
  64. }
  65. listview {
  66. fixed-height: 0;
  67. border: 5px dash 1px 10px ;
  68. border-radius: 25;
  69. border-color: @separatorcolor;
  70. spacing: 10px ;
  71. scrollbar: false;
  72. padding: 5px 5px 5px 5px ;
  73. }
  74. element {
  75. border: 5 1 5 1;
  76. border-radius: 25;
  77. padding: 5 1 5 1;
  78. }
  79. element-icon {
  80. size: 2.5em ;
  81. }
  82. element {
  83. orientation: horizontal;
  84. }
  85. element-text {
  86. vertical-align: 0.5;
  87. }
  88. element {
  89. border: 5 0 5 1;
  90. border-color: @foreground;
  91. border-radius: 20;
  92. padding: 1 5 1 20;
  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: 5 1 5 1;
  133. handle-color: @normal-foreground;
  134. handle-width: 8px ;
  135. padding: 5 1 5 1;
  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 1 5 15;
  151. border: 5 1 5 1;
  152. border-radius: 30%;
  153. spacing: 10px;
  154. margin: 5px 5px 5px 5px ;
  155. background-color: @background;
  156. border-color: @foreground;
  157. text-color: @foreground;
  158. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];}
  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