Advertisement
poetician

Rofi | 0006 Piano Hall 04D

May 1st, 2022
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.99 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0006 Piano Hall ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: 0006 Piano Hall 04D Poetician Edition (https://gitlab.com/Poetician/rofi)
  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: #99775899;
  14. blue: #66729180;
  15. lightfg: #8d9ba1;
  16. lightbg: #c3c1c180;
  17. foreground: #65695d;
  18. background: #21242766;
  19. background-color: #9ea0b01a;
  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: 60%;
  46. background-color: @background;
  47. border: 8;
  48. border-radius: 24;
  49. padding: 6;
  50. x-offset: 0px;
  51. y-offset: 60px;
  52. }
  53. mainbox {
  54. border: 2;
  55. border-radius: 20;
  56. padding: 5;
  57. }
  58. message {
  59. border: 3px dash 3px 3px ;
  60. border-radius: 10;
  61. border-color: @separatorcolor;
  62. padding: 5px ;
  63. }
  64. textbox {
  65. text-color: @foreground;
  66. }
  67. listview {
  68. fixed-height: 0;
  69. border: 7px dash 7px 7px ;
  70. border-radius: 20;
  71. border-color: @separatorcolor;
  72. spacing: 7px ;
  73. scrollbar: false;
  74. padding: 7px 7px 7px ;
  75. }
  76. element-icon {
  77. size: 2.5em ;
  78. }
  79. element {
  80. orientation: horizontal;
  81. }
  82. element-text {
  83. vertical-align: 0.5;
  84. text-color: inherit;
  85. }
  86. element {
  87. border: 5;
  88. border-radius: 16;
  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: 0 0 0 5;
  149. border-spacing: 0;
  150. border: 10px dash 5px 1px ;
  151. border-radius: 20%;
  152. spacing: 2px;
  153. margin: 2;
  154. border-color: @foreground;
  155. text-color: @white;
  156. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  157. }
  158. case-indicator {
  159. spacing: 0;
  160. text-color: @white;
  161. }
  162. entry {
  163. spacing: 0;
  164. text-color: @white;
  165. }
  166. prompt {
  167. spacing: 0;
  168. text-color: @white;
  169. }
  170. textbox-prompt-colon {
  171. expand: false;
  172. str: ":";
  173. margin: 0px 0.3000em 0.0000em 0.0000em ;
  174. text-color: inherit;
  175. }
  176.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement