Advertisement
poetician

Rofi | 0258 wheat-sunset-02

Jun 6th, 2021
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.80 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0258 Wheat Sunset ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-0258 Wheat Sunset
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. white: #FEFCFF;
  11. black: #00000080;
  12. red: #dd00d233;
  13. blue: #bf00e780;
  14. lightfg: #ff52384d;
  15. lightbg: #ed970100;
  16. foreground: #4113684d;
  17. background: #2D2C314d;
  18. background-color: #9720fb1a;
  19. separatorcolor: @foreground;
  20. border-color: @foreground;
  21. selected-normal-foreground: @black;
  22. selected-normal-background: @lightfg;
  23. selected-active-foreground: @red;
  24. selected-active-background: @blue;
  25. selected-urgent-foreground: @background;
  26. selected-urgent-background: @red;
  27. normal-foreground: @white;
  28. normal-background: @background;
  29. active-foreground: @blue;
  30. active-background: @background;
  31. urgent-foreground: @red;
  32. urgent-background: @background;
  33. alternate-normal-foreground: @white;
  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. background-color: @background;
  43. border: 10 dash 2px 5 ;
  44. border-radius: 10 10 10 10 ;
  45. padding: 5 10 5 10 ;
  46. x-offset: -360;
  47. y-offset: -60;
  48. }
  49. mainbox {
  50. border: 7;
  51. border-radius: 24 24 1 1;
  52. padding: 10;
  53. }
  54. message {
  55. border: 1px dash 0px 0px ;
  56. border-color: @separatorcolor;
  57. padding: 10px ;
  58. }
  59. textbox {
  60. text-color: @foreground;
  61. }
  62. listview {
  63. fixed-height: 0;
  64. border: 5px dash 5px 5px ;
  65. border-radius: 24 24 2 2;
  66. border-color: @separatorcolor;
  67. spacing: 10px ;
  68. scrollbar: false;
  69. padding: 7px 5px 5px ;
  70. }
  71. element-icon {
  72. size: 3em ;
  73. }
  74. element {
  75. orientation: vertical;
  76. }
  77. element-text {
  78. horizontal-align: 0.5;
  79. }
  80. element {
  81. border: 4 10 4 10 ;
  82. border-radius: 10 10 5 5 ;
  83. padding: 4px ;
  84. }
  85. element normal.normal {
  86. background-color: @normal-background;
  87. text-color: @normal-foreground;
  88. }
  89. element normal.urgent {
  90. background-color: @urgent-background;
  91. text-color: @urgent-foreground;
  92. }
  93. element normal.active {
  94. background-color: @active-background;
  95. text-color: @active-foreground;
  96. }
  97. element selected.normal {
  98. background-color: @selected-normal-background;
  99. text-color: @selected-normal-foreground;
  100. }
  101. element selected.urgent {
  102. background-color: @selected-urgent-background;
  103. text-color: @selected-urgent-foreground;
  104. }
  105. element selected.active {
  106. background-color: @selected-active-background;
  107. text-color: @selected-active-foreground;
  108. }
  109. element alternate.normal {
  110. background-color: @alternate-normal-background;
  111. text-color: @alternate-normal-foreground;
  112. }
  113. element alternate.urgent {
  114. background-color: @alternate-urgent-background;
  115. text-color: @alternate-urgent-foreground;
  116. }
  117. element alternate.active {
  118. background-color: @alternate-active-background;
  119. text-color: @alternate-active-foreground;
  120. }
  121. scrollbar {
  122. width: 4px ;
  123. border: 0;
  124. handle-color: @normal-foreground;
  125. handle-width: 8px ;
  126. padding: 0;
  127. }
  128. sidebar {
  129. border: 2px dash 0px 0px ;
  130. border-color: @separatorcolor;
  131. }
  132. button {
  133. spacing: 0;
  134. text-color: @normal-foreground;
  135. }
  136. button selected {
  137. background-color: @selected-normal-background;
  138. text-color: @selected-normal-foreground;
  139. }
  140. inputbar {
  141. padding: 10px;
  142. border-spacing: 5 5 5 5;
  143. border: 5px 5px 5px 5px ;
  144. border-radius: 16 16 2 2;
  145. spacing: 20px;
  146. margin: 5px 5px 5px;
  147. border-color: @black;
  148. text-color: @black;
  149. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  150. }
  151. case-indicator {
  152. spacing: 0;
  153. text-color: @black;
  154. }
  155. entry {
  156. spacing: 0;
  157. text-color: @black;
  158. }
  159. prompt {
  160. spacing: 0;
  161. text-color: @black;
  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