poetician

Rofi | 0018 Round Suru 05G

Jan 20th, 2022
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.28 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0018 Round Suru ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: 0018 Round Suru Poetician Edition (https://gitlab.com/Poetician)
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. text: #1f262c;
  11. select: #b9a4794d;
  12. red: #c39b55;
  13. blue: #6c676180;
  14. lightfg: #b9a479;
  15. lightbg: #443f394d;
  16. foreground: #b9a479;
  17. background: #1f262cb3;
  18. background-color: #443f3933;
  19. separatorcolor: @foreground;
  20. border-color: @foreground;
  21. selected-normal-foreground: @text;
  22. selected-normal-background: @select;
  23. selected-active-foreground: @background;
  24. selected-active-background: @select;
  25. selected-urgent-foreground: @background;
  26. selected-urgent-background: @red;
  27. normal-foreground: @foreground;
  28. normal-background: @background;
  29. active-foreground: @blue;
  30. active-background: @background;
  31. urgent-foreground: @red;
  32. urgent-background: @background;
  33. alternate-normal-foreground: @foreground;
  34. alternate-normal-background: @lightbg;
  35. alternate-active-foreground: @blue;
  36. alternate-active-background: @lightbg;
  37. alternate-urgent-foreground: @red;
  38. alternate-urgent-background: @lightbg;
  39. spacing: 2;
  40. }
  41. window {
  42. anchor: north;
  43. location: north;
  44. width: 60%;
  45. x-offset: 0px;
  46. y-offset: 60px;
  47. background-color: @background;
  48. border: 2 0 0 0 ;
  49. border-radius: 12 12 0 0 ;
  50. padding: 1;
  51. }
  52. mainbox {
  53. border: 0px 0px 1px 0px ;
  54. border-radius: 12 12 0 0 ;
  55. padding: 4px ;
  56. }
  57. message {
  58. border: 10px 0px 1px 0px ;
  59. border-color: @separatorcolor;
  60. padding: 4px ;
  61. }
  62. textbox {
  63. text-color: @foreground;
  64. }
  65. element {
  66. children: [element-icon, element-text];
  67. background-image: linear-gradient(to right, black/30%, grey/50%, white/70%);
  68. orientation: horizontal;
  69. border: 2 0 1 0 ;
  70. border-color: @normal-foreground;
  71. border-radius: 12 12 0 0 ;
  72. padding: 4px ;
  73. }
  74. element-icon {
  75. size: 2.2em ;
  76. }
  77. element-text {
  78. vertical-align: 0.450;
  79. text-color: @normal-foreground;
  80. }
  81. listview {
  82. lines: 6;
  83. columns: 3;
  84. fixed-height: 0;
  85. border: 0 0 1 0 ;
  86. border-color: @separatorcolor;
  87. border-radius: 12 12 0 0 ;
  88. spacing: 4 12 4 12 ;
  89. scrollbar: false;
  90. padding: 4 0 4 0 ;
  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 0px 0px 1px ;
  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: 0px 0px 5px 10px ;
  149. border-spacing: 0 0 0 0;
  150. border: 2px 0px 1px 0px ;
  151. border-radius: 12 12 0 0 ;
  152. spacing: 0px 10px 0px 0px ;
  153. margin: 0px 380px 5px 380px ;
  154. border-color: @normal-foreground;
  155. text-color: @normal-foreground;
  156. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  157. }
  158. case-indicator {
  159. spacing: 0;
  160. text-color: @normal-foreground;
  161. }
  162. entry {
  163. spacing: 0;
  164. text-color: @normal-foreground;
  165. }
  166. prompt {
  167. spacing: 0;
  168. text-color: @normal-foreground;
  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