Advertisement
poetician

Rofi | seal-brown

Jun 5th, 2021
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.75 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. black: #000000;
  11. red: #f80059;
  12. blue: #5ba2b6;
  13. lightfg: #980000;
  14. lightbg: #cb0000;
  15. foreground: #FF554D;
  16. background: #650000;
  17. background-color: #32000040;
  18. separatorcolor: @foreground;
  19. border-color: @foreground;
  20. selected-normal-foreground: @lightbg;
  21. selected-normal-background: @background-color;
  22. selected-active-foreground: @background;
  23. selected-active-background: @blue;
  24. selected-urgent-foreground: @background;
  25. selected-urgent-background: @red;
  26. normal-foreground: @background;
  27. normal-background: @lightbg;
  28. active-foreground: @blue;
  29. active-background: @background;
  30. urgent-foreground: @red;
  31. urgent-background: @background;
  32. alternate-normal-foreground: @foreground;
  33. alternate-normal-background: @lightfg;
  34. alternate-active-foreground: @blue;
  35. alternate-active-background: @lightbg;
  36. alternate-urgent-foreground: @red;
  37. alternate-urgent-background: @lightbg;
  38. spacing: 3;
  39. }
  40. window {
  41. background-color: @background;
  42. border: 5;
  43. border-radius: 10px;
  44. padding: 15;
  45. x-offset: -80;
  46. y-offset: -40;
  47. }
  48. mainbox {
  49. border: 5;
  50. border-radius: 10px;
  51. padding: 15;
  52. }
  53. message {
  54. border: 5px dash 1px 0px ;
  55. border-radius: 10px;
  56. border-color: @separatorcolor;
  57. padding: 15px ;
  58. }
  59. textbox {
  60. text-color: @background;
  61. border: 5;
  62. border-radius: 10px;
  63. padding: 15px;
  64. }
  65. listview {
  66. fixed-height: 0;
  67. border: 6px dash 2px 0px ;
  68. border-radius: 10px;
  69. border-color: @separatorcolor;
  70. spacing: 10px ;
  71. scrollbar: false;
  72. padding: 9px 3px 0px ;
  73. }
  74. element {
  75. border: 5;
  76. border-radius: 10px;
  77. padding: 15px ;
  78. }
  79. element-icon {
  80. size: 2.5em ;
  81. padding: 5px;
  82. }
  83. element-text {
  84. vertical-align: 0.50;
  85. text-color: red;
  86. }
  87. element {
  88. orientation: horizontal;
  89. }
  90. element normal.normal {
  91. background-color: @normal-background;
  92. text-color: @normal-foreground;
  93. }
  94. element normal.urgent {
  95. background-color: @urgent-background;
  96. text-color: @urgent-foreground;
  97. }
  98. element normal.active {
  99. background-color: @active-background;
  100. text-color: @active-foreground;
  101. }
  102. element selected.normal {
  103. background-color: @selected-normal-background;
  104. text-color: @selected-normal-foreground;
  105. }
  106. element selected.urgent {
  107. background-color: @selected-urgent-background;
  108. text-color: @selected-urgent-foreground;
  109. }
  110. element selected.active {
  111. background-color: @selected-active-background;
  112. text-color: @selected-active-foreground;
  113. }
  114. element alternate.normal {
  115. background-color: @alternate-normal-background;
  116. text-color: @alternate-normal-foreground;
  117. }
  118. element alternate.urgent {
  119. background-color: @alternate-urgent-background;
  120. text-color: @alternate-urgent-foreground;
  121. }
  122. element alternate.active {
  123. background-color: @alternate-active-background;
  124. text-color: @alternate-active-foreground;
  125. }
  126. scrollbar {
  127. width: 6px ;
  128. border: 1;
  129. handle-color: @normal-foreground;
  130. handle-width: 8px ;
  131. padding: 1;
  132. }
  133. sidebar {
  134. border: 2px dash 0px 0px ;
  135. border-color: @separatorcolor;
  136. }
  137. button {
  138. spacing: 0;
  139. text-color: @normal-foreground;
  140. }
  141. button selected {
  142. background-color: @selected-normal-background;
  143. text-color: @selected-normal-foreground;
  144. }
  145. inputbar {
  146. spacing: 0px;
  147. text-color: @normal-foreground;
  148. padding: 1px ;
  149. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  150. }
  151. case-indicator {
  152. spacing: 0;
  153. text-color: @normal-foreground;
  154. }
  155. entry {
  156. spacing: 0;
  157. text-color: @normal-foreground;
  158. }
  159. prompt {
  160. spacing: 0;
  161. text-color: @normal-foreground;
  162. }
  163. textbox-prompt-colon {
  164. expand: false;
  165. str: ":";
  166. margin: 0px 0.3000em 0.0000em 0.0000em ;
  167. text-color: inherit;
  168. }
  169.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement