Advertisement
poetician

Rofi | seal-brown-03

Jun 5th, 2021
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.96 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. orange: #f80059;
  11. black: #00000033;
  12. red: #f8005933;
  13. blue: #5ba2b633;
  14. lightfg: #98000033;
  15. lightbg: #cb000033;
  16. foreground: #FF554D33;
  17. background: #65000033;
  18. background-color: #32000040;
  19. separatorcolor: @foreground;
  20. border-color: @foreground;
  21. selected-normal-foreground: @lightbg;
  22. selected-normal-background: @background-color;
  23. selected-active-foreground: @background;
  24. selected-active-background: @blue;
  25. selected-urgent-foreground: @background;
  26. selected-urgent-background: @red;
  27. normal-foreground: @background;
  28. normal-background: @lightbg;
  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: @lightfg;
  35. alternate-active-foreground: @blue;
  36. alternate-active-background: @lightbg;
  37. alternate-urgent-foreground: @red;
  38. alternate-urgent-background: @lightbg;
  39. spacing: 3;
  40. }
  41. window {
  42. background-color: @background;
  43. border: 5;
  44. border-radius: 10px;
  45. padding: 3 15 6 15 ;
  46. x-offset: 0;
  47. y-offset: -40;
  48. }
  49. mainbox {
  50. border: 5;
  51. border-radius: 10px;
  52. padding: 3 15 6 15 ;
  53. }
  54. message {
  55. border: 5px dash 1px 0px ;
  56. border-radius: 10px;
  57. border-color: @separatorcolor;
  58. padding: 3 15 6 15 ;
  59. }
  60. textbox {
  61. text-color: @background;
  62. border: 5;
  63. border-radius: 10px;
  64. padding: 3 15 6 15 ;
  65. }
  66. listview {
  67. fixed-height: 0;
  68. border: 6px dash 2px 0px ;
  69. border-radius: 10px;
  70. border-color: @separatorcolor;
  71. spacing: 10px ;
  72. scrollbar: false;
  73. padding: 9px 3px 0px ;
  74. }
  75. element {
  76. border: 5;
  77. border-radius: 10px;
  78. padding: 3 15 6 15 ;
  79. }
  80. element-icon {
  81. size: 2.5em ;
  82. padding: 5px;
  83. }
  84. element-text {
  85. horizontal-align: 0.50;
  86. text-color: red;
  87. }
  88. element {
  89. orientation: vertical;
  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: 6px ;
  129. border: 1;
  130. handle-color: @normal-foreground;
  131. handle-width: 8px ;
  132. padding: 1;
  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: 3 15 6 15 ;
  148. border-spacing: 0 0 0 0;
  149. border: 5px;
  150. border-radius: 10;
  151. spacing: 3 10 3 10 ;
  152. margin: 0 10 0 10 ;
  153. border-color: @foreground;
  154. text-color: @orange;
  155. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  156. }
  157. case-indicator {
  158. spacing: 0;
  159. text-color: @orange;
  160. }
  161. entry {
  162. spacing: 0;
  163. text-color: @orange;
  164. }
  165. prompt {
  166. spacing: 0;
  167. text-color: @orange;
  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