Advertisement
poetician

Rofi | 0009-Ours-Polaire-05

May 28th, 2021
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.15 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0009 Ours Polaire ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-0009 Ours Polaire
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. silver: #D2EAEE;
  11. black: #2F2A2E;
  12. white: #ECEBD7;
  13. grey: #5e606b;
  14. red: #87632F;
  15. blue: #8FA0B5;
  16. lightfg: #d9eff433;
  17. lightbg: #BBC9CB80;
  18. foreground: #3c3e4a99;
  19. background: #23263380;
  20. background-color: #807e841a;
  21. separatorcolor: @foreground;
  22. border-color: @foreground;
  23. selected-normal-foreground: @silver;
  24. selected-normal-background: @lightfg;
  25. selected-active-foreground: @red;
  26. selected-active-background: @blue;
  27. selected-urgent-foreground: @background;
  28. selected-urgent-background: @red;
  29. normal-foreground: @white;
  30. normal-background: @background;
  31. active-foreground: @blue;
  32. active-background: @background;
  33. urgent-foreground: @red;
  34. urgent-background: @background;
  35. alternate-normal-foreground: @white;
  36. alternate-normal-background: @lightbg;
  37. alternate-active-foreground: @blue;
  38. alternate-active-background: @lightbg;
  39. alternate-urgent-foreground: @red;
  40. alternate-urgent-background: @lightbg;
  41. spacing: 2;
  42. }
  43. window {
  44. anchor: east;
  45. background-color: @background;
  46. border: 10px dash 5px 1px ;
  47. border-radius: 10;
  48. padding: 10;
  49. x-offset: -60px;
  50. y-offset: -40px;
  51. }
  52. mainbox {
  53. border: 10px dash 5px 1px ;
  54. border-radius: 10;
  55. padding: 10;
  56. }
  57. message {
  58. border: 5px dash 5px 1px ;
  59. border-radius: 10;
  60. border-color: @separatorcolor;
  61. padding: 10px ;
  62. }
  63. textbox {
  64. text-color: @foreground;
  65. border: 5px;
  66. border-radius: 10px;
  67. }
  68. listview {
  69. fixed-height: 0;
  70. border: 10px dash 5px 1px ;
  71. border-radius: 10;
  72. border-color: @separatorcolor;
  73. spacing: 10px ;
  74. scrollbar: false;
  75. padding: 5px 5px 5px ;
  76. }
  77. element-icon {
  78. size: 3em ;
  79. }
  80. element {
  81. orientation: vertical;
  82. }
  83. element-text {
  84. horizontal-align: 0.5;
  85. }
  86. element {
  87. border: 10px dash 5px 1px ;
  88. border-radius: 10;
  89. border-color: @red;
  90. padding: 10px ;
  91. }
  92. element normal.normal {
  93. background-color: @normal-background;
  94. text-color: @normal-foreground;
  95. }
  96. element normal.urgent {
  97. background-color: @urgent-background;
  98. text-color: @urgent-foreground;
  99. }
  100. element normal.active {
  101. background-color: @active-background;
  102. text-color: @active-foreground;
  103. }
  104. element selected.normal {
  105. background-color: @selected-normal-background;
  106. text-color: @selected-normal-foreground;
  107. }
  108. element selected.urgent {
  109. background-color: @selected-urgent-background;
  110. text-color: @selected-urgent-foreground;
  111. }
  112. element selected.active {
  113. background-color: @selected-active-background;
  114. text-color: @selected-active-foreground;
  115. }
  116. element alternate.normal {
  117. background-color: @alternate-normal-background;
  118. text-color: @alternate-normal-foreground;
  119. }
  120. element alternate.urgent {
  121. background-color: @alternate-urgent-background;
  122. text-color: @alternate-urgent-foreground;
  123. }
  124. element alternate.active {
  125. background-color: @alternate-active-background;
  126. text-color: @alternate-active-foreground;
  127. }
  128. scrollbar {
  129. width: 4px ;
  130. border: 0;
  131. handle-color: @normal-foreground;
  132. handle-width: 8px ;
  133. padding: 0;
  134. }
  135. sidebar {
  136. border: 2px dash 0px 0px ;
  137. border-color: @separatorcolor;
  138. }
  139. button {
  140. spacing: 0;
  141. text-color: @normal-foreground;
  142. }
  143. button selected {
  144. background-color: @selected-normal-background;
  145. text-color: @selected-normal-foreground;
  146. }
  147. inputbar {
  148. padding: 5px;
  149. border-spacing: 0 0 0 0;
  150. border: 10px dash 5px 1px ;
  151. border-radius: 40%;
  152. spacing: 10px;
  153. margin: 5px 5px 5px;
  154. border-color: @foreground;
  155. text-color: @normal-foreground;
  156. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];}
  157. case-indicator {
  158. spacing: 0;
  159. text-color: @normal-foreground;
  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
Advertisement