colors-rofi-light.rasi 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. * {
  2. active-background: #396E9E;
  3. active-foreground: @foreground;
  4. normal-background: @background;
  5. normal-foreground: @foreground;
  6. urgent-background: #386693;
  7. urgent-foreground: @foreground;
  8. alternate-active-background: @background;
  9. alternate-active-foreground: @foreground;
  10. alternate-normal-background: @background;
  11. alternate-normal-foreground: @foreground;
  12. alternate-urgent-background: @background;
  13. alternate-urgent-foreground: @foreground;
  14. selected-active-background: #386693;
  15. selected-active-foreground: @foreground;
  16. selected-normal-background: #396E9E;
  17. selected-normal-foreground: @foreground;
  18. selected-urgent-background: #49749E;
  19. selected-urgent-foreground: @foreground;
  20. background-color: @background;
  21. background: #b5c7d7;
  22. foreground: #111b25;
  23. border-color: @background;
  24. spacing: 2;
  25. }
  26. #window {
  27. background-color: @background;
  28. border: 0;
  29. padding: 2.5ch;
  30. }
  31. #mainbox {
  32. border: 0;
  33. padding: 0;
  34. }
  35. #message {
  36. border: 2px 0px 0px;
  37. border-color: @border-color;
  38. padding: 1px;
  39. }
  40. #textbox {
  41. text-color: @foreground;
  42. }
  43. #inputbar {
  44. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  45. }
  46. #textbox-prompt-colon {
  47. expand: false;
  48. str: ":";
  49. margin: 0px 0.3em 0em 0em;
  50. text-color: @normal-foreground;
  51. }
  52. #listview {
  53. fixed-height: 0;
  54. border: 2px 0px 0px;
  55. border-color: @border-color;
  56. spacing: 2px;
  57. scrollbar: true;
  58. padding: 2px 0px 0px;
  59. }
  60. #element {
  61. border: 0;
  62. padding: 1px;
  63. }
  64. #element-text, element-icon {
  65. background-color: inherit;
  66. text-color: inherit;
  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: 4px;
  106. border: 0;
  107. handle-width: 8px;
  108. padding: 0;
  109. }
  110. #sidebar {
  111. border: 2px 0px 0px;
  112. border-color: @border-color;
  113. }
  114. #button {
  115. text-color: @normal-foreground;
  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. }