vapor.rasi 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /*******************************************************************************
  2. * ROFI Color theme
  3. * User: Sergio Morales
  4. * Copyright: Sergio Morales
  5. *******************************************************************************/
  6. * {
  7. foreground: rgba ( 88, 105, 123, 100 % );
  8. normal-foreground: @foreground;
  9. alternate-normal-background: @normal-background;
  10. red: rgba ( 220, 50, 47, 100 % );
  11. selected-urgent-foreground: rgba ( 220, 50, 47, 100 % );
  12. blue: rgba ( 38, 139, 210, 100 % );
  13. urgent-foreground: rgba ( 220, 50, 47, 100 % );
  14. alternate-urgent-background: rgba ( 245, 245, 245, 100 % );
  15. active-foreground: rgba ( 194, 202, 208, 100 % );
  16. lightbg: rgba ( 238, 232, 213, 100 % );
  17. alternate-active-background: rgba ( 245, 245, 245, 100 % );
  18. background: rgba ( 9, 6, 17, 100 % );
  19. bordercolor: rgba ( 195, 193, 61, 100 % );
  20. alternate-normal-foreground: @foreground;
  21. normal-background: rgba ( 255, 255, 255, 0 % );
  22. lightfg: rgba ( 88, 104, 117, 100 % );
  23. selected-normal-background: rgba ( 150, 45, 76, 80 % );
  24. selected-normal-foreground: rgba ( 180, 144, 82, 100 % );
  25. selected-active-foreground: rgba ( 180, 144, 82, 100 % );
  26. border-color: rgba ( 150, 45, 76, 100 % );
  27. spacing: 2;
  28. separatorcolor: none;
  29. urgent-background: rgba ( 255, 255, 255, 100 % );
  30. selected-urgent-background: rgba ( 82, 148, 226, 100 % );
  31. alternate-urgent-foreground: @urgent-foreground;
  32. background-color: rgba ( 0, 0, 0, 0 % );
  33. alternate-active-foreground: @active-foreground;
  34. active-background: rgba ( 255, 255, 255, 100 % );
  35. selected-active-background: rgba ( 82, 148, 226, 100 % );
  36. font: "Inconsolata Regular 13";
  37. }
  38. #window {
  39. background-color: @background;
  40. border: 2;
  41. padding: 20;
  42. width: 30%;
  43. }
  44. #mainbox {
  45. border: 0;
  46. padding: 10;
  47. }
  48. #message {
  49. border: 0px 0px 0px ;
  50. border-color: @separatorcolor;
  51. padding: 1px ;
  52. }
  53. #textbox {
  54. text-color: @foreground;
  55. }
  56. #listview {
  57. fixed-height: 0;
  58. border: 0px 0px 0px ;
  59. border-color: @separatorcolor;
  60. spacing: 2px ;
  61. scrollbar: true;
  62. padding: 2px 0px 0px ;
  63. }
  64. #element {
  65. border: 0;
  66. padding: 15px 15px ;
  67. }
  68. #element.normal.normal {
  69. background-color: @normal-background;
  70. text-color: @normal-foreground;
  71. }
  72. #element.normal.urgent {
  73. background-color: @urgent-background;
  74. text-color: @urgent-foreground;
  75. }
  76. #element.normal.active {
  77. background-color: @active-background;
  78. text-color: @active-foreground;
  79. }
  80. #element.selected.normal {
  81. background-color: @selected-normal-background;
  82. text-color: @selected-normal-foreground;
  83. }
  84. #element.selected.urgent {
  85. background-color: @selected-urgent-background;
  86. text-color: @selected-urgent-foreground;
  87. }
  88. #element.selected.active {
  89. background-color: @selected-active-background;
  90. text-color: @selected-active-foreground;
  91. }
  92. #element.alternate.normal {
  93. background-color: @alternate-normal-background;
  94. text-color: @alternate-normal-foreground;
  95. }
  96. #element.alternate.urgent {
  97. background-color: @alternate-urgent-background;
  98. text-color: @alternate-urgent-foreground;
  99. }
  100. #element.alternate.active {
  101. background-color: @alternate-active-background;
  102. text-color: @alternate-active-foreground;
  103. }
  104. #scrollbar {
  105. width: 0 ;
  106. border: 0;
  107. handle-width: 0px ;
  108. padding: 0;
  109. }
  110. #sidebar {
  111. border: 0px 0px 0px ;
  112. border-color: @separatorcolor;
  113. }
  114. #button.selected {
  115. background-color: @selected-normal-background;
  116. text-color: @selected-normal-foreground;
  117. }
  118. #inputbar {
  119. spacing: 0;
  120. text-color: @normal-foreground;
  121. padding: 10px 20px 20px;
  122. margin: 0px 0px 15px;
  123. border: 0px 0px 2px;
  124. border-color: @selected-normal-background;
  125. }
  126. #case-indicator {
  127. spacing: 0;
  128. text-color: @normal-foreground;
  129. }
  130. #entry {
  131. spacing: 0;
  132. text-color: @normal-foreground;
  133. }
  134. #prompt {
  135. spacing: 0;
  136. text-color: @normal-foreground;
  137. font: "Inconsolata Bold 15";
  138. margin: -2px 0 0 0;
  139. }
  140. #inputbar {
  141. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  142. }
  143. #textbox-prompt-colon {
  144. expand: false;
  145. str: " > ";
  146. margin: 0 0.3em 0em 0em ;
  147. text-color: @normal-foreground;
  148. font: "Inconsolata Bold 13";
  149. }