Advertisement
poetician

Rofi | Stellar 02.rasi

Jan 6th, 2022
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.11 KB | None | 0 0
  1. /**
  2. * Base16 oomox-seal brown ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-seal brown
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. golden: #FAE3AD;
  11. yellow: #ffe05c;
  12. orange: #f80059;
  13. black: #00000033;
  14. red: #f8005933;
  15. blue: #5ba2b633;
  16. lightfg: #98000033;
  17. lightbg: #cb000033;
  18. foreground: #FF554D33;
  19. background: #65000033;
  20. background-color: #32000040;
  21. separatorcolor: @foreground;
  22. border-color: @foreground;
  23. selected-normal-foreground: @golden;
  24. selected-normal-background: @background-color;
  25. selected-active-foreground: @yellow;
  26. selected-active-background: @blue;
  27. selected-urgent-foreground: @background;
  28. selected-urgent-background: @red;
  29. normal-foreground: @yellow;
  30. normal-background: @lightbg;
  31. active-foreground: @blue;
  32. active-background: @background;
  33. urgent-foreground: @red;
  34. urgent-background: @background;
  35. alternate-normal-foreground: @golden;
  36. alternate-normal-background: @lightfg;
  37. alternate-active-foreground: @blue;
  38. alternate-active-background: @lightbg;
  39. alternate-urgent-foreground: @red;
  40. alternate-urgent-background: @lightbg;
  41. spacing: 3;
  42. }
  43. window {
  44. background-color: @background;
  45. border: 0px 0px 5px 0px ;
  46. border-radius: 10px;
  47. padding: 10 60 30 60 ;
  48. x-offset: 40;
  49. y-offset: 60;
  50. }
  51. mainbox {
  52. border: 0px 0px 5px 0px ;
  53. border-radius: 10px;
  54. padding: 10 60 30 60 ;
  55. }
  56. message {
  57. border: 0px 0px 5px 0px ;
  58. border-radius: 10px;
  59. border-color: @separatorcolor;
  60. padding: 10 60 30 60 ;
  61. }
  62. textbox {
  63. text-color: @background;
  64. border: 0px 0px 5px 0px ;
  65. border-radius: 10px;
  66. padding: 10 60 30 60 ;
  67. }
  68. listview {
  69. lines: 8;
  70. columns: 2;
  71. border: 0px 0px 5px 0px ;
  72. border-radius: 10px;
  73. border-color: @separatorcolor;
  74. spacing: 10px ;
  75. scrollbar: false;
  76. padding: 10 60 30 60 ;
  77. }
  78. element {
  79. border: 0px 0px 5px 0px ;
  80. border-radius: 10px;
  81. padding: 2 6 2 8 ;
  82. }
  83. element-icon {
  84. size: 2.2em ;
  85. padding: 5px;
  86. }
  87. element-text {
  88. vertical-align: 0.55;
  89. text-color: @golden;
  90. }
  91. element {
  92. orientation: horizontal;
  93. }
  94. element normal.normal {
  95. background-color: @normal-background;
  96. text-color: @normal-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: @selected-normal-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: @alternate-normal-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: 6px ;
  132. border: 1;
  133. handle-color: @normal-foreground;
  134. handle-width: 8px ;
  135. padding: 1;
  136. }
  137. sidebar {
  138. border: 2px ;
  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: 2 ;
  151. border-spacing: 2 ;
  152. border: 0px 0px 5px 0px ;
  153. border-radius: 10 ;
  154. spacing: 3 10 3 10 ;
  155. margin: 2 80 2 80 ;
  156. border-color: @foreground;
  157. text-color: @yellow;
  158. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  159. }
  160. case-indicator {
  161. spacing: 0;
  162. text-color: @yellow;
  163. }
  164. entry {
  165. spacing: 0;
  166. text-color: @yellow;
  167. }
  168. prompt {
  169. spacing: 0;
  170. text-color: @yellow;
  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