Advertisement
poetician

Rofi | 0006 Piano Hall 05

Jun 6th, 2021 (edited)
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.95 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0006 Piano Hall ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-0006 Piano Hall
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. white: #F2EFDE;
  11. black: #030303;
  12. grey: #83909d;
  13. red: #907C4C80;
  14. blue: #533F0F80;
  15. lightfg: #907C4C;
  16. lightbg: #816D3D80;
  17. foreground: #A79363;
  18. background: #34200080;
  19. background-color: #4B370780;
  20. separatorcolor: @foreground;
  21. border-color: @foreground;
  22. selected-normal-foreground: @black;
  23. selected-normal-background: @lightfg;
  24. selected-active-foreground: @black;
  25. selected-active-background: @blue;
  26. selected-urgent-foreground: @background;
  27. selected-urgent-background: @red;
  28. normal-foreground: @white;
  29. normal-background: @background;
  30. active-foreground: @blue;
  31. active-background: @background;
  32. urgent-foreground: @red;
  33. urgent-background: @background;
  34. alternate-normal-foreground: @white;
  35. alternate-normal-background: @lightbg;
  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. anchor: north;
  44. location: north;
  45. width: 80%;
  46. x-offset: 0px;
  47. y-offset: 60px;
  48. background-color: @background;
  49. border: 8;
  50. border-radius: 20;
  51. padding: 8;
  52. }
  53. mainbox {
  54. border: 4;
  55. border-radius: 12;
  56. padding: 8;
  57. }
  58. message {
  59. border: 3px dash 3px 3px ;
  60. border-radius: 8;
  61. border-color: @separatorcolor;
  62. padding: 5px ;
  63. }
  64. textbox {
  65. text-color: @foreground;
  66. }
  67. listview {
  68. lines: 2;
  69. columns: 8;
  70. fixed-height: 0;
  71. border: 8px dash 6px 8px ;
  72. border-radius: 8;
  73. border-color: @separatorcolor;
  74. spacing: 16px ;
  75. scrollbar: false;
  76. padding: 8px 16px 8px ;
  77. }
  78. element-icon {
  79. size: 2em ;
  80. }
  81. element {
  82. orientation: horizontal;
  83. }
  84. element-text {
  85. vertical-align: 0.45;
  86. }
  87. element {
  88. border: 6;
  89. border-radius: 8;
  90. border-color: @red;
  91. padding: 12px ;
  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 dash 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: 0 0 0 5;
  150. border-spacing: 4;
  151. border: 2px dash 4px 8px ;
  152. border-radius: 20%;
  153. spacing: 2px;
  154. margin: 0;
  155. border-color: @foreground;
  156. text-color: @white;
  157. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  158. }
  159. case-indicator {
  160. spacing: 0;
  161. text-color: @white;
  162. }
  163. entry {
  164. spacing: 0;
  165. text-color: @white;
  166. }
  167. prompt {
  168. spacing: 0;
  169. text-color: @white;
  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