Advertisement
poetician

Rofi | Plum-Gold_02

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