Advertisement
poetician

Rofi | 0023 Montane 03

Jun 6th, 2021
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.71 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0023 Montane ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-0023 Montane
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. orange: #FBAC0580;
  11. yellow: #F9C45B99;
  12. lightblue: #94C1AA;
  13. red: #B4904980;
  14. blue: #7EB1AE80;
  15. lightfg: #ABBEBD;
  16. lightbg: #0202021a;
  17. foreground: #E2E2D9;
  18. background: #2E2E2A33;
  19. background-color: #2E2E2A33;
  20. separatorcolor: @foreground;
  21. border-color: @orange;
  22. selected-normal-foreground: @foreground;
  23. selected-normal-background: @red;
  24. selected-active-foreground: @background;
  25. selected-active-background: @blue;
  26. selected-urgent-foreground: @background;
  27. selected-urgent-background: @red;
  28. normal-foreground: @foreground;
  29. normal-background: @background;
  30. active-foreground: @blue;
  31. active-background: @background;
  32. urgent-foreground: @red;
  33. urgent-background: @background;
  34. alternate-normal-foreground: @foreground;
  35. alternate-normal-background: @blue;
  36. alternate-active-foreground: @blue;
  37. alternate-active-background: @lightbg;
  38. alternate-urgent-foreground: @red;
  39. alternate-urgent-background: @lightbg;
  40. spacing: 2;
  41. }
  42. window {
  43. background-color: @background;
  44. border: 8;
  45. border-radius: 16;
  46. padding: 40;
  47. x-offset: 0;
  48. y-offset: 60;
  49. }
  50. mainbox {
  51. border: 8;
  52. border-radius: 20;
  53. padding: 10;
  54. }
  55. message {
  56. border: 10px dash 0px 0px ;
  57. border-radius: 20;
  58. border-color: @orange;
  59. padding: 1px ;
  60. }
  61. textbox {
  62. text-color: @foreground;
  63. }
  64. listview {
  65. fixed-height: 0;
  66. border: 0px dash 0px 10px ;
  67. border-radius: 20;
  68. border-color: @orange;
  69. spacing: 12px ;
  70. scrollbar: false;
  71. padding: 8px 4px 8px 4px ;
  72. }
  73. element-icon {
  74. size: 2em ;
  75. }
  76. element {
  77. orientation: horizontal;
  78. }
  79. element-text {
  80. vertical-align: 0.45;
  81. }
  82. element {
  83. border: 0 0 10 0;
  84. border-color: @foreground;
  85. border-radius: 20;
  86.  
  87. padding: 10px ;
  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. spacing: 0px;
  146. text-color: @normal-foreground;
  147. padding: 1px ;
  148. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  149. }
  150. case-indicator {
  151. spacing: 0;
  152. text-color: @normal-foreground;
  153. }
  154. entry {
  155. spacing: 0;
  156. text-color: @normal-foreground;
  157. }
  158. prompt {
  159. spacing: 0;
  160. text-color: @normal-foreground;
  161. }
  162. textbox-prompt-colon {
  163. expand: false;
  164. str: ":";
  165. margin: 0px 0.3000em 0.0000em 0.0000em ;
  166. text-color: inherit;
  167. }
  168.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement