Advertisement
poetician

Rofi | Turquoise-03

Apr 25th, 2022
66
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-Turquoise ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: Turquoise Poetician Edition
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. clear: #00000000;
  11. text: #a5c8f2;
  12. red: #073351;
  13. blue: #2aa1b7;
  14. lightfg: #87b0e6;
  15. lightbg: #0e82b0;
  16. foreground: #6ad6ef;
  17. background: #094e62;
  18. background-color: #416289;
  19. separatorcolor: @foreground;
  20. border-color: @foreground;
  21. selected-normal-foreground: @lightbg;
  22. selected-normal-background: @lightfg;
  23. selected-active-foreground: @background;
  24. selected-active-background: @blue;
  25. selected-urgent-foreground: @background;
  26. selected-urgent-background: @red;
  27. normal-foreground: @foreground;
  28. normal-background: @background;
  29. active-foreground: @blue;
  30. active-background: @background;
  31. urgent-foreground: @red;
  32. urgent-background: @background;
  33. alternate-normal-foreground: @foreground;
  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: 4 ;
  44. border-radius: 33;
  45. padding: 10;
  46. }
  47. mainbox {
  48. border: 4 ;
  49. border-radius: 25;
  50. padding: 9;
  51. }
  52. message {
  53. border: 3px 3px 3px 3px ;
  54. border-color: @separatorcolor;
  55. padding: 10;
  56. }
  57. textbox {
  58. text-color: @text;
  59. }
  60. listview {
  61. lines: 8;
  62. columns: 3;
  63. border: 0px 0px 0px 0px ;
  64. border-color: @separatorcolor;
  65. border-radius: 25;
  66. text-color: @text;
  67. spacing: 3px ;
  68. scrollbar: false;
  69. padding: 6px 2px 2px 1px ;
  70. }
  71. element-icon {
  72. size: 2.5em ;
  73. }
  74. element {
  75. orientation: horizontal;
  76. }
  77. element-text {
  78. vertical-align: 0.55;
  79. }
  80. element {
  81. border: 3 0 3 0;
  82. border-radius: 14;
  83. text-color: @text;
  84. padding: 2px ;
  85. }
  86. element normal.normal {
  87. background-color: @normal-background;
  88. text-color: @normal-foreground;
  89. }
  90. element normal.urgent {
  91. background-color: @urgent-background;
  92. text-color: @urgent-foreground;
  93. }
  94. element normal.active {
  95. background-color: @active-background;
  96. text-color: @active-foreground;
  97. }
  98. element selected.normal {
  99. background-color: @selected-normal-background;
  100. text-color: @selected-normal-foreground;
  101. }
  102. element selected.urgent {
  103. background-color: @selected-urgent-background;
  104. text-color: @selected-urgent-foreground;
  105. }
  106. element selected.active {
  107. background-color: @selected-active-background;
  108. text-color: @selected-active-foreground;
  109. }
  110. element alternate.normal {
  111. background-color: @alternate-normal-background;
  112. text-color: @alternate-normal-foreground;
  113. }
  114. element alternate.urgent {
  115. background-color: @alternate-urgent-background;
  116. text-color: @alternate-urgent-foreground;
  117. }
  118. element alternate.active {
  119. background-color: @alternate-active-background;
  120. text-color: @alternate-active-foreground;
  121. }
  122. sidebar {
  123. border: 2px 0px 0px 0px ;
  124. border-color: @separatorcolor;
  125. }
  126. button {
  127. spacing: 0;
  128. text-color: @normal-foreground;
  129. }
  130. button selected {
  131. background-color: @selected-normal-background;
  132. text-color: @selected-normal-foreground;
  133. }
  134. scrollbar {
  135. width: 0px ;
  136. border: 0;
  137. handle-color: @normal-foreground;
  138. handle-width: 0px ;
  139. padding: 0;
  140. }
  141. inputbar {
  142. padding: 6 ;
  143. border-spacing: 2 ;
  144. border: 2 0 2 0 ;
  145. border-radius: 10 ;
  146. spacing: 3 10 3 10 ;
  147. margin: 2 80 2 80 ;
  148. border-color: @foreground;
  149. text-color: @yellow;
  150. background-color: @clear;
  151. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  152. }
  153. case-indicator {
  154. spacing: 0;
  155. text-color: @normal-foreground;
  156. background-color: @clear;
  157. }
  158. entry {
  159. spacing: 0;
  160. text-color: @normal-foreground;
  161. background-color: @clear;
  162. }
  163. prompt {
  164. spacing: 0;
  165. text-color: @normal-foreground;
  166. background-color: @clear;
  167. }
  168. textbox-prompt-colon {
  169. expand: false;
  170. str: ":";
  171. margin: 0px 0.3000em 0.0000em 0.0000em ;
  172. text-color: inherit;
  173. background-color: @clear;
  174. }
  175.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement