Advertisement
poetician

Rofi | 0006 Piano Hall 03D

May 1st, 2022
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.07 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0006 Piano Hall ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: 0006 Piano Hall 03D 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. clear: #00000000;
  11. black: #020100;
  12. dark: #34362b;
  13. red: #B07959;
  14. blue: #8D9BA190;
  15. lightfg: #909293;
  16. lightbg: #21242780;
  17. foreground: #9EA0B0;
  18. background: #21242733;
  19. background-color: #21242733;
  20. separatorcolor: @foreground;
  21. border-color: @foreground;
  22. selected-normal-foreground: @lightbg;
  23. selected-normal-background: @lightfg;
  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: @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: southeast;
  44. location: southeast;
  45. width: 45%;
  46. background-color: @background;
  47. border: 4 dash 8px 6 ;
  48. border-radius: 16;
  49. padding: 4;
  50. x-offset: 0px;
  51. y-offset: 60px;
  52. }
  53. mainbox {
  54. border: 2;
  55. border-radius: 8;
  56. padding: 8;
  57. }
  58. message {
  59. border: 4px dash 6px 8px ;
  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: 8px dash 4px 6px ;
  70. border-radius: 10;
  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: vertical;
  81. }
  82. element-text {
  83. horizontal-align: 0.5;
  84. }
  85. element {
  86. border: 5;
  87. border-radius: 20;
  88. border-color: @red;
  89. padding: 10px ;
  90. }
  91. element normal.normal {
  92. background-color: @normal-background;
  93. text-color: @normal-foreground;
  94. }
  95. element normal.urgent {
  96. background-color: @urgent-background;
  97. text-color: @urgent-foreground;
  98. }
  99. element normal.active {
  100. background-color: @active-background;
  101. text-color: @active-foreground;
  102. }
  103. element selected.normal {
  104. background-color: @selected-normal-background;
  105. text-color: @selected-normal-foreground;
  106. }
  107. element selected.urgent {
  108. background-color: @selected-urgent-background;
  109. text-color: @selected-urgent-foreground;
  110. }
  111. element selected.active {
  112. background-color: @selected-active-background;
  113. text-color: @selected-active-foreground;
  114. }
  115. element alternate.normal {
  116. background-color: @alternate-normal-background;
  117. text-color: @alternate-normal-foreground;
  118. }
  119. element alternate.urgent {
  120. background-color: @alternate-urgent-background;
  121. text-color: @alternate-urgent-foreground;
  122. }
  123. element alternate.active {
  124. background-color: @alternate-active-background;
  125. text-color: @alternate-active-foreground;
  126. }
  127. scrollbar {
  128. width: 4px ;
  129. border: 0;
  130. handle-color: @normal-foreground;
  131. handle-width: 8px ;
  132. padding: 0;
  133. }
  134. sidebar {
  135. border: 2px dash 0px 0px ;
  136. border-color: @separatorcolor;
  137. }
  138. button {
  139. spacing: 0;
  140. text-color: @normal-foreground;
  141. }
  142. button selected {
  143. background-color: @selected-normal-background;
  144. text-color: @selected-normal-foreground;
  145. }
  146. inputbar {
  147. padding: 4px dash 4px 4px ;
  148. border-spacing: 4 4 4 4;
  149. border: 8px dash 4px 2px ;
  150. border-radius: 40%;
  151. spacing: 4px ;
  152. margin: 0px dash 48px 4px;
  153. border-color: @foreground;
  154. text-color: @normal-foreground;
  155. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  156. }
  157. case-indicator {
  158. spacing: 0;
  159. text-color: @normal-foreground;
  160. }
  161. entry {
  162. spacing: 0;
  163. text-color: @normal-foreground;
  164. }
  165. prompt {
  166. spacing: 0;
  167. text-color: @normal-foreground;
  168. }
  169. textbox-prompt-colon {
  170. expand: false;
  171. str: ":";
  172. margin: 0px 0.3000em 0.0000em 0.0000em ;
  173. text-color: inherit;
  174. }
  175.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement