poetician

Rofi | 0023 Montane 02D

Apr 25th, 2022
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.19 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0023 Montane ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-0023 Montane 2D 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: @lightfg;
  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: 10;
  49. border-radius: 25;
  50. padding: 10;
  51. }
  52. mainbox {
  53. border: 10;
  54. border-radius: 12;
  55. padding: 10;
  56. }
  57. message {
  58. border: 10px dash 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: 6;
  68. columns: 3;
  69. fixed-height: 0;
  70. border: 10px dash 0px 0px ;
  71. border-radius: 20;
  72. border-color: @separatorcolor;
  73. spacing: 15px ;
  74. scrollbar: false;
  75. padding: 20 10 10 10 ;
  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. children: [element-icon, element-text];
  89. background-image: linear-gradient(to bottom, yellow/40%, green/30%, blue/20%);
  90. border: 5 ;
  91. border-color: @lightblue;
  92. border-radius: 20 ;
  93. padding: 10 ;
  94. }
  95. element normal.normal {
  96. background-color: @normal-background;
  97. text-color: @normal-foreground;
  98. }
  99. element normal.urgent {
  100. background-color: @urgent-background;
  101. text-color: @urgent-foreground;
  102. }
  103. element normal.active {
  104. background-color: @active-background;
  105. text-color: @active-foreground;
  106. }
  107. element selected.normal {
  108. background-color: @selected-normal-background;
  109. text-color: @selected-normal-foreground;
  110. }
  111. element selected.urgent {
  112. background-color: @selected-urgent-background;
  113. text-color: @selected-urgent-foreground;
  114. }
  115. element selected.active {
  116. background-color: @selected-active-background;
  117. text-color: @selected-active-foreground;
  118. }
  119. element alternate.normal {
  120. background-color: @alternate-normal-background;
  121. text-color: @alternate-normal-foreground;
  122. }
  123. element alternate.urgent {
  124. background-color: @alternate-urgent-background;
  125. text-color: @alternate-urgent-foreground;
  126. }
  127. element alternate.active {
  128. background-color: @alternate-active-background;
  129. text-color: @alternate-active-foreground;
  130. }
  131. scrollbar {
  132. width: 4px ;
  133. border: 0;
  134. handle-color: @normal-foreground;
  135. handle-width: 8px ;
  136. padding: 0;
  137. }
  138. sidebar {
  139. border: 2px dash 0px 0px ;
  140. border-color: @separatorcolor;
  141. }
  142. button {
  143. spacing: 0;
  144. text-color: @normal-foreground;
  145. }
  146. button selected {
  147. background-color: @selected-normal-background;
  148. text-color: @selected-normal-foreground;
  149. }
  150. inputbar {
  151. padding: 5 5 5 15;
  152. border-spacing: 10 4 10 4;
  153. border: 0px 0px 10px dash 0px ;
  154. border-radius: 20 ;
  155. spacing: 20px ;
  156. margin: 0px 2px 0px 2px ;
  157. border-color: @foreground;
  158. text-color: @normal-foreground;
  159. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  160. }
  161. case-indicator {
  162. spacing: 0;
  163. text-color: @normal-foreground;
  164. }
  165. entry {
  166. spacing: 0;
  167. text-color: @normal-foreground;
  168. }
  169. prompt {
  170. spacing: 0;
  171. text-color: @normal-foreground;
  172. }
  173. textbox-prompt-colon {
  174. expand: false;
  175. str: ":";
  176. margin: 0px 0.3000em 0.0000em 0.0000em ;
  177. text-color: inherit;
  178. }
  179.  
Advertisement
Add Comment
Please, Sign In to add comment