Advertisement
poetician

Avocado_2 | rofi

May 20th, 2021
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.31 KB | None | 0 0
  1. /**
  2. * Base16 oomox-avocado_2 ROFI Color theme
  3. *
  4. * Authors
  5. * Scheme: oomox-avocado_2
  6. * Template: Jordi Pakey-Rodriguez (https://github.com/0xdec), Andrea Scarpino (https://github.com/ilpianista)
  7. */
  8.  
  9. * {
  10. green: #d2e190;
  11. red: #001c00;
  12. blue: #74923acc;
  13. lightfg: #81A140;
  14. lightbg: #617b3066;
  15. foreground: #234f1ecc;
  16. background: #00000066;
  17. background-color: #A3BF4566;
  18. separatorcolor: @foreground;
  19. border-color: @foreground;
  20. selected-normal-foreground: @red;
  21. selected-normal-background: @green;
  22. selected-active-foreground: @red;
  23. selected-active-background: @blue;
  24. selected-urgent-foreground: @background;
  25. selected-urgent-background: @red;
  26. normal-foreground: @green;
  27. normal-background: @background;
  28. active-foreground: @blue;
  29. active-background: @background;
  30. urgent-foreground: @red;
  31. urgent-background: @background;
  32. alternate-normal-foreground: @green;
  33. alternate-normal-background: @blue;
  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: 9;
  43. padding: 0;
  44. }
  45. mainbox {
  46. border: 9;
  47. padding: 0;
  48. }
  49. message {
  50. border: 1px dash 0px 0px ;
  51. border-color: @separatorcolor;
  52. padding: 1px ;
  53. }
  54. textbox {
  55. text-color: @foreground;
  56. }
  57. listview {
  58. fixed-height: 0;
  59. border: 2px dash 0px 0px ;
  60. border-color: @separatorcolor;
  61. spacing: 2px ;
  62. scrollbar: true;
  63. padding: 2px 0px 0px ;
  64. }
  65. element-icon {
  66. size: 2.5em ;
  67. }
  68. element {
  69. orientation: horizontal;
  70. }
  71. element {
  72. border: 10;
  73. padding: 0px ;
  74. }
  75. element normal.normal {
  76. background-color: @normal-background;
  77. text-color: @normal-foreground;
  78. }
  79. element normal.urgent {
  80. background-color: @urgent-background;
  81. text-color: @urgent-foreground;
  82. }
  83. element normal.active {
  84. background-color: @active-background;
  85. text-color: @active-foreground;
  86. }
  87. element selected.normal {
  88. background-color: @selected-normal-background;
  89. text-color: @selected-normal-foreground;
  90. }
  91. element selected.urgent {
  92. background-color: @selected-urgent-background;
  93. text-color: @selected-urgent-foreground;
  94. }
  95. element selected.active {
  96. background-color: @selected-active-background;
  97. text-color: @selected-active-foreground;
  98. }
  99. element alternate.normal {
  100. background-color: @alternate-normal-background;
  101. text-color: @alternate-normal-foreground;
  102. }
  103. element alternate.urgent {
  104. background-color: @alternate-urgent-background;
  105. text-color: @alternate-urgent-foreground;
  106. }
  107. element alternate.active {
  108. background-color: @alternate-active-background;
  109. text-color: @alternate-active-foreground;
  110. }
  111. scrollbar {
  112. width: 4px ;
  113. border: 0;
  114. handle-color: @normal-foreground;
  115. handle-width: 8px ;
  116. padding: 0;
  117. }
  118. sidebar {
  119. border: 2px dash 0px 0px ;
  120. border-color: @separatorcolor;
  121. }
  122. button {
  123. spacing: 0;
  124. text-color: @normal-foreground;
  125. }
  126. button selected {
  127. background-color: @selected-normal-background;
  128. text-color: @selected-normal-foreground;
  129. }
  130. inputbar {
  131. spacing: 0px;
  132. text-color: @normal-foreground;
  133. padding: 1px ;
  134. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  135. }
  136. case-indicator {
  137. spacing: 0;
  138. text-color: @normal-foreground;
  139. }
  140. entry {
  141. spacing: 0;
  142. text-color: @green;
  143. }
  144. prompt {
  145. spacing: 0;
  146. text-color: @green;
  147. }
  148. textbox-prompt-colon {
  149. expand: false;
  150. str: ":";
  151. margin: 0px 0.3000em 0.0000em 0.0000em ;
  152. text-color: inherit;
  153. }
  154.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement