poetician

Rofi | Turquoise-02G

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