Advertisement
poetician

Rofi | 0067 Peaks and Plain 02

Jun 8th, 2021
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.91 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. seltext: #F6DABE;
  11. red: #F07E2833;
  12. blue: #35414A99;
  13. lightfg: #E6E7E433;
  14. lightbg: #35414A;
  15. foreground: #ffffffb3;
  16. background: #35414A1a;
  17. background-color: #F17B2933;
  18. separatorcolor: @foreground;
  19. border-color: @foreground;
  20. selected-normal-foreground: @seltext;
  21. selected-normal-background: @lightfg;
  22. selected-active-foreground: @background;
  23. selected-active-background: @blue;
  24. selected-urgent-foreground: @background;
  25. selected-urgent-background: @red;
  26. normal-foreground: @foreground;
  27. normal-background: @background;
  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: @lightbg;
  34. alternate-active-foreground: @blue;
  35. alternate-active-background: @lightbg;
  36. alternate-urgent-foreground: @red;
  37. alternate-urgent-background: @lightbg;
  38. spacing: 2;
  39. }
  40. window {
  41. background-color: @background;
  42. border: 3 6 9 6 ;
  43. border-radius: 5 5 15 15 ;
  44. padding: 15px 25px 15px 25px;
  45. x-offset: -60px;
  46. y-offset: -30px;
  47. }
  48. mainbox {
  49. border: 3 6 9 6 ;
  50. border-radius: 5 5 15 15 ;
  51. padding: 15px 25px 15px 25px;
  52. }
  53. message {
  54. border: 1px dash 0px 0px ;
  55. border-radius: 5 5 15 15 ;
  56. border-color: @separatorcolor;
  57. padding: 15px 25px 15px 25px;
  58. }
  59. textbox {
  60. text-color: @foreground;
  61. }
  62. element-icon {
  63. size: 2em ;
  64. }
  65. element {
  66. orientation: horizontal;
  67. }
  68. element-text {
  69. vertical-align: 0.50;
  70. }
  71. listview {
  72. fixed-height: 0;
  73. border: 3 6 9 6 ;
  74. border-radius: 5 5 15 15 ;
  75. border-color: @separatorcolor;
  76. spacing: 12px ;
  77. scrollbar: false;
  78. padding: 15px 25px 15px 25px;
  79. }
  80. element {
  81. border: 3 6 9 6 ;
  82. border-radius: 5 5 15 15 ;
  83. padding: 15px ;
  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: 0px ;
  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. border-radius: 15 15 5 5 ;
  142. padding: 5px ;
  143. border-spacing: 0px ;
  144. border: 5px;
  145. spacing: 10px 0px 10px 0px ;
  146. margin: 5px 0px 5px 0px;
  147. border-color: @foreground;
  148. text-color: @normal-foreground;
  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