Advertisement
poetician

Rofi | 0023 Montane 02 (updated)

Apr 25th, 2022
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.06 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0023 Montane ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-0023 Montane 02 Poetician Edition
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. yellow: #F9C45B99;
  11. lightblue: #94C1AA;
  12. red: #B4904980;
  13. blue: #7EB1AE80;
  14. lightfg: #ABBEBD;
  15. lightbg: #0202021a;
  16. foreground: #E2E2D9;
  17. background: #2E2E2A99;
  18. background-color: #2E2E2A33;
  19. separatorcolor: @foreground;
  20. border-color: @foreground;
  21. selected-normal-foreground: @foreground;
  22. selected-normal-background: @red;
  23. selected-active-foreground: @background;
  24. selected-active-background: @blue;
  25. selected-urgent-foreground: @background;
  26. selected-urgent-background: @red;
  27. normal-foreground: @foreground;
  28. normal-background: @background;
  29. active-foreground: @blue;
  30. active-background: @background;
  31. urgent-foreground: @red;
  32. urgent-background: @background;
  33. alternate-normal-foreground: @foreground;
  34. alternate-normal-background: @blue;
  35. alternate-active-foreground: @blue;
  36. alternate-active-background: @lightbg;
  37. alternate-urgent-foreground: @red;
  38. alternate-urgent-background: @lightbg;
  39. spacing: 2;
  40. }
  41. window {
  42. anchor: northeast;
  43. location: northeast;
  44. width: 50%;
  45. x-offset: -20px;
  46. y-offset: 40px;
  47. background-color: @background;
  48. border: 6;
  49. border-radius: 20;
  50. padding: 10;
  51. }
  52. mainbox {
  53. border: 6;
  54. border-radius: 12;
  55. padding: 10;
  56. }
  57. message {
  58. border: 6px 0px 0px 0px ;
  59. border-radius: 20;
  60. border-color: @separatorcolor;
  61. padding: 1px ;
  62. }
  63. textbox {
  64. text-color: @foreground;
  65. }
  66. listview {
  67. lines: 5;
  68. columns: 3;
  69. fixed-height: 0;
  70. border: 6px 0px 0px 0px ;
  71. border-radius: 20;
  72. border-color: @separatorcolor;
  73. spacing: 20px ;
  74. scrollbar: false;
  75. padding: 10px 1px 0px 1px ;
  76. }
  77. element-icon {
  78. size: 2em ;
  79. }
  80. element {
  81. orientation: horizontal;
  82. }
  83. element-text {
  84. vertical-align: 0.45;
  85. text-color: inherit;
  86. }
  87. element {
  88. border: 5 5 10 5 ;
  89. border-color: @lightblue;
  90. border-radius: 20;
  91. padding: 10px ;
  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 0px 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: 10 4 10 4;
  151. border: 6px 0px 0px 0px ;
  152. border-radius: 9 ;
  153. spacing: 20px ;
  154. margin: 0px 5px 0px 5px ;
  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