Advertisement
poetician

Rofi | 0006 Piano Hall 02

Jun 6th, 2021 (edited)
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.05 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0006 Piano Hall ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: 0006-Piano-Hall-02 Poetician Edition
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. text: #c6bfad;
  11. red: #B07959;
  12. blue: #8D9BA190;
  13. lightfg: #909293;
  14. lightbg: #21242780;
  15. foreground: #cbcbcb;
  16. background: #21242733;
  17. background-color: #21242733;
  18. separatorcolor: @foreground;
  19. border-color: @foreground;
  20. selected-normal-foreground: @foreground;
  21. selected-normal-background: @lightfg;
  22. selected-active-foreground: @background;
  23. selected-active-background: @blue;
  24. selected-urgent-foreground: @background;
  25. selected-urgent-background: @red;
  26. normal-foreground: @foreground;
  27. normal-background: @background;
  28. active-foreground: @blue;
  29. active-background: @background;
  30. urgent-foreground: @red;
  31. urgent-background: @background;
  32. alternate-normal-foreground: @foreground;
  33. alternate-normal-background: @lightbg;
  34. alternate-active-foreground: @blue;
  35. alternate-active-background: @lightbg;
  36. alternate-urgent-foreground: @red;
  37. alternate-urgent-background: @lightbg;
  38. spacing: 2;
  39. }
  40. window {
  41. anchor: northwest;
  42. location: northwest;
  43. width: 60%;
  44. x-offset: 40px;
  45. y-offset: 60px;
  46. background-color: @background;
  47. border: 6;
  48. border-radius: 16;
  49. padding: 6;
  50. }
  51. mainbox {
  52. border: 2;
  53. border-radius: 12;
  54. padding: 6;
  55. }
  56. message {
  57. border: 3px dash 3px 3px ;
  58. border-radius: 20;
  59. border-color: @separatorcolor;
  60. padding: 6px ;
  61. }
  62. textbox {
  63. text-color: @foreground;
  64. }
  65. listview {
  66. lines: 4;
  67. columns: 4;
  68. fixed-height: 0;
  69. border: 6px dash 6px 6px ;
  70. border-radius: 9;
  71. border-color: @separatorcolor;
  72. spacing: 6px ;
  73. scrollbar: false;
  74. padding: 6px ;
  75. }
  76. element-icon {
  77. size: 2em ;
  78. }
  79. element {
  80. orientation: horizontal;
  81. children: [element-icon, element-text];
  82. background-image: linear-gradient(to left, grey/40%, white/30%, black/30%);
  83. }
  84. element-text {
  85. vertical-align: 0.45;
  86. text-color: @foreground;
  87. }
  88. element {
  89. border: 6;
  90. border-radius: 12;
  91. border-color: @red;
  92. padding: 12px ;
  93. }
  94. element normal.normal {
  95. background-color: @normal-background;
  96. text-color: @foreground;
  97. }
  98. element normal.urgent {
  99. background-color: @urgent-background;
  100. text-color: @urgent-foreground;
  101. }
  102. element normal.active {
  103. background-color: @active-background;
  104. text-color: @active-foreground;
  105. }
  106. element selected.normal {
  107. background-color: @selected-normal-background;
  108. text-color: @foreground;
  109. }
  110. element selected.urgent {
  111. background-color: @selected-urgent-background;
  112. text-color: @selected-urgent-foreground;
  113. }
  114. element selected.active {
  115. background-color: @selected-active-background;
  116. text-color: @selected-active-foreground;
  117. }
  118. element alternate.normal {
  119. background-color: @alternate-normal-background;
  120. text-color: @foreground;
  121. }
  122. element alternate.urgent {
  123. background-color: @alternate-urgent-background;
  124. text-color: @alternate-urgent-foreground;
  125. }
  126. element alternate.active {
  127. background-color: @alternate-active-background;
  128. text-color: @alternate-active-foreground;
  129. }
  130. scrollbar {
  131. width: 4px ;
  132. border: 0;
  133. handle-color: @normal-foreground;
  134. handle-width: 8px ;
  135. padding: 0;
  136. }
  137. sidebar {
  138. border: 2px dash 0px 0px ;
  139. border-color: @separatorcolor;
  140. }
  141. button {
  142. spacing: 0;
  143. text-color: @normal-foreground;
  144. }
  145. button selected {
  146. background-color: @selected-normal-background;
  147. text-color: @selected-normal-foreground;
  148. }
  149. inputbar {
  150. padding: 5px;
  151. border-spacing: 4 4 4 4;
  152. border: 15px dash 5px 1px ;
  153. border-radius: 40%;
  154. spacing: 10px;
  155. margin: 5px 5px 5px;
  156. border-color: @foreground;
  157. text-color: @foreground;
  158. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  159. }
  160. case-indicator {
  161. spacing: 0;
  162. text-color: @foreground;
  163. }
  164. entry {
  165. spacing: 0;
  166. text-color: @foreground;
  167. }
  168. prompt {
  169. spacing: 0;
  170. text-color: @foreground;
  171. }
  172. textbox-prompt-colon {
  173. expand: false;
  174. str: ":";
  175. margin: 0px 0.3000em 0.0000em 0.0000em ;
  176. text-color: inherit;
  177. }
  178.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement