Advertisement
poetician

Rofi | 0043 Misty Road

Jun 7th, 2021
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.74 KB | None | 0 0
  1. /**
  2. * Base16 oomox-0043 Misty Road ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-0043 Misty Road
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. red: rgba ( 210, 78, 20, 100 % );
  11. blue: rgba ( 77, 63, 51, 100 % );
  12. lightfg: rgba ( 238, 169, 63, 100 % );
  13. lightbg: rgba ( 0, 0, 0, 100 % );
  14. foreground: rgba ( 244, 173, 63, 80 % );
  15. background: rgba ( 0, 0, 0, 30 % );
  16. background-color: rgba ( 26, 12, 0, 0 % );
  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: 12;
  43. padding: 8;
  44. }
  45. mainbox {
  46. border: 4;
  47. border-radius: 12;
  48. padding: 2;
  49. }
  50. message {
  51. border: 1px dash 0px 0px ;
  52. border-color: @separatorcolor;
  53. padding: 1px ;
  54. }
  55. textbox {
  56. text-color: @foreground;
  57. }
  58. listview {
  59. fixed-height: 0;
  60. border: 2px dash 0px 0px ;
  61. border-radius: 10px;
  62. border-color: @separatorcolor;
  63. spacing: 2px ;
  64. scrollbar: false;
  65. padding: 2px 4px 2px ;
  66. }
  67. element-icon {
  68. size: 1.5em ;
  69. }
  70. element {
  71. orientation: vertical;
  72. }
  73. element-text {
  74. horizontal-align: 0.5;
  75. }
  76. element {
  77. border: 2px dash 0px 0px ;
  78. border-radius: 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: 4px;
  137. border-spacing: 0 0 0 0;
  138. border: 4px ;
  139. border-radius: 10 10 10 10 ;
  140. spacing: 8px;
  141. margin: 4px ;
  142. border-color: @foreground;
  143. text-color: @black;
  144. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  145. }
  146. case-indicator {
  147. spacing: 0;
  148. text-color: @normal-foreground;
  149. }
  150. entry {
  151. spacing: 0;
  152. text-color: @normal-foreground;
  153. }
  154. prompt {
  155. spacing: 0;
  156. text-color: @normal-foreground;
  157. }
  158. textbox-prompt-colon {
  159. expand: false;
  160. str: ":";
  161. margin: 0px 0.3000em 0.0000em 0.0000em ;
  162. text-color: inherit;
  163. }
  164.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement