Advertisement
poetician

Rofi | Turquoise-02

Nov 30th, 2021
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.62 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. red: #073351;
  11. blue: #2aa1b7;
  12. lightfg: #87b0e6;
  13. lightbg: #0e82b0;
  14. foreground: #6ad6ef;
  15. background: #094e62;
  16. background-color: #416289;
  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: @foreground;
  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: 4 ;
  42. border-radius: 20;
  43. padding: 10;
  44. }
  45. mainbox {
  46. border: 4 ;
  47. border-radius: 20;
  48. padding: 10;
  49. }
  50. message {
  51. border: 3px 3px 3px 3px ;
  52. border-color: @separatorcolor;
  53. padding: 10px ;
  54. }
  55. textbox {
  56. text-color: @foreground;
  57. }
  58. listview {
  59. lines: 8;
  60. columns: 3;
  61. border: 3px 0px 0px 0px ;
  62. border-color: @separatorcolor;
  63. spacing: 3px ;
  64. scrollbar: true;
  65. padding: 6px 0px 0px 0px ;
  66. }
  67. element-icon {
  68. size: 2.5em ;
  69. }
  70. element {
  71. orientation: horizontal;
  72. }
  73. element-text {
  74. vertical-align: 0.55;
  75. }
  76. element {
  77. border: 0;
  78. border-radius: 20;
  79. padding: 12px ;
  80. }
  81. element normal.normal {
  82. background-color: @normal-background;
  83. text-color: @normal-foreground;
  84. }
  85. element normal.urgent {
  86. background-color: @urgent-background;
  87. text-color: @urgent-foreground;
  88. }
  89. element normal.active {
  90. background-color: @active-background;
  91. text-color: @active-foreground;
  92. }
  93. element selected.normal {
  94. background-color: @selected-normal-background;
  95. text-color: @selected-normal-foreground;
  96. }
  97. element selected.urgent {
  98. background-color: @selected-urgent-background;
  99. text-color: @selected-urgent-foreground;
  100. }
  101. element selected.active {
  102. background-color: @selected-active-background;
  103. text-color: @selected-active-foreground;
  104. }
  105. element alternate.normal {
  106. background-color: @alternate-normal-background;
  107. text-color: @alternate-normal-foreground;
  108. }
  109. element alternate.urgent {
  110. background-color: @alternate-urgent-background;
  111. text-color: @alternate-urgent-foreground;
  112. }
  113. element alternate.active {
  114. background-color: @alternate-active-background;
  115. text-color: @alternate-active-foreground;
  116. }
  117. sidebar {
  118. border: 2px dash 0px 0px ;
  119. border-color: @separatorcolor;
  120. }
  121. button {
  122. spacing: 0;
  123. text-color: @normal-foreground;
  124. }
  125. button selected {
  126. background-color: @selected-normal-background;
  127. text-color: @selected-normal-foreground;
  128. }
  129. scrollbar {
  130. width: 0px ;
  131. border: 0;
  132. handle-color: @normal-foreground;
  133. handle-width: 0px ;
  134. padding: 0;
  135. }
  136. inputbar {
  137. padding: 6 ;
  138. border-spacing: 2 ;
  139. border: 2 0 2 0 ;
  140. border-radius: 10 ;
  141. spacing: 3 10 3 10 ;
  142. margin: 2 80 2 80 ;
  143. border-color: @foreground;
  144. text-color: @yellow;
  145. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  146. }
  147. case-indicator {
  148. spacing: 0;
  149. text-color: @normal-foreground;
  150. }
  151. entry {
  152. spacing: 0;
  153. text-color: @normal-foreground;
  154. }
  155. prompt {
  156. spacing: 0;
  157. text-color: @normal-foreground;
  158. }
  159. textbox-prompt-colon {
  160. expand: false;
  161. str: ":";
  162. margin: 0px 0.3000em 0.0000em 0.0000em ;
  163. text-color: inherit;
  164. }
  165.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement