Advertisement
poetician

Rofi | 0096 Autumn Sunset slant

Jun 8th, 2021
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.95 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0067 Peaks and Plain ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-0067 Peaks and Plain
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. orange: #AE3B20;
  11. black: #000000;
  12. green: #373F10;
  13. red: #CD162366;
  14. blue: #9AA2D0;
  15. lightfg: #D7D6D2;
  16. lightbg: #CFC3B7;
  17. foreground: #2F2F17;
  18. background: #CEA997;
  19. background-color: #F7D9BD;
  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. background-color: @background;
  44. border: 1 10 10 1;
  45. border-radius: 10 20 30 10;
  46. padding: 2 25 5 2;
  47. x-offset: -100px;
  48. y-offset: -10px;
  49. }
  50. mainbox {
  51. border: 1 10 10 1;
  52. border-radius: 10 20 30 10;
  53. padding: 2 25 5 2;
  54. }
  55. message {
  56. border: 1 10 10 1;
  57. border-radius: 10 20 30 10;
  58. border-color: @separatorcolor;
  59. padding: 5 15 5 1 ;
  60. }
  61. textbox {
  62. text-color: @foreground;
  63. }
  64. element-icon {
  65. size: 3em ;
  66. }
  67. element {
  68. orientation: horizontal;
  69. }
  70. element-text {
  71. vertical-align: 0.50;
  72. }
  73. listview {
  74. fixed-height: 0;
  75. border: 1 10 10 1;
  76. border-radius: 10 20 30 10;
  77. border-color: @separatorcolor;
  78. spacing: 12px ;
  79. scrollbar: false;
  80. padding: 2 25 5 2;
  81. }
  82. element {
  83. border: 1 10 10 1;
  84. border-radius: 10 20 20 10;
  85. padding: 2 25 5 2;
  86. }
  87. element normal.normal {
  88. background-color: @normal-background;
  89. text-color: @normal-foreground;
  90. }
  91. element normal.urgent {
  92. background-color: @urgent-background;
  93. text-color: @urgent-foreground;
  94. }
  95. element normal.active {
  96. background-color: @active-background;
  97. text-color: @active-foreground;
  98. }
  99. element selected.normal {
  100. background-color: @selected-normal-background;
  101. text-color: @selected-normal-foreground;
  102. }
  103. element selected.urgent {
  104. background-color: @selected-urgent-background;
  105. text-color: @selected-urgent-foreground;
  106. }
  107. element selected.active {
  108. background-color: @selected-active-background;
  109. text-color: @selected-active-foreground;
  110. }
  111. element alternate.normal {
  112. background-color: @alternate-normal-background;
  113. text-color: @alternate-normal-foreground;
  114. }
  115. element alternate.urgent {
  116. background-color: @alternate-urgent-background;
  117. text-color: @alternate-urgent-foreground;
  118. }
  119. element alternate.active {
  120. background-color: @alternate-active-background;
  121. text-color: @alternate-active-foreground;
  122. }
  123. scrollbar {
  124. width: 0px ;
  125. border: 1 10 10 1;
  126. handle-color: @normal-foreground;
  127. handle-width: 8px ;
  128. padding: 0;
  129. }
  130. sidebar {
  131. border: 1 10 10 1;
  132. border-color: @separatorcolor;
  133. }
  134. button {
  135. spacing: 0;
  136. text-color: @normal-foreground;
  137. }
  138. button selected {
  139. background-color: @selected-normal-background;
  140. text-color: @selected-normal-foreground;
  141. }
  142. inputbar {
  143. border: 1 10 10 1;
  144. border-radius: 10 20 30 10;
  145. padding: 2 25 5 2;
  146. border-spacing: 5px 0 0 0;
  147. spacing: 10px;
  148. margin: 5px 5px 5px;
  149. border-color: @foreground;
  150. text-color: @normal-foreground;
  151. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];}
  152. case-indicator {
  153. spacing: 0;
  154. text-color: @normal-foreground;
  155. }
  156. entry {
  157. spacing: 0;
  158. text-color: @normal-foreground;
  159. }
  160. prompt {
  161. spacing: 0;
  162. text-color: @normal-foreground;
  163. }
  164. textbox-prompt-colon {
  165. expand: false;
  166. str: ":";
  167. margin: 0px 0.3000em 0.0000em 0.0000em ;
  168. text-color: inherit;
  169. }
  170.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement