lb.rasi 4.3 KB

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