style_4.rasi 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /*
  2. *
  3. * Author : Aditya Shakya
  4. * Mail : adi1090x@gmail.com
  5. * Github : @adi1090x
  6. * Twitter : @adi1090x
  7. *
  8. */
  9. configuration {
  10. font: "Iosevka Nerd Font 12";
  11. location: 1;
  12. fixed-num-lines: true;
  13. show-icons: false;
  14. sidebar-mode: true;
  15. scroll-method: 0;
  16. window-format: "[{w}] ··· {c} ··· {t}";
  17. click-to-exit: true;
  18. combi-hide-mode-prefix: false;
  19. display-window: "";
  20. display-windowcd: "";
  21. display-run: "";
  22. display-ssh: "";
  23. display-drun: "";
  24. display-combi: "";
  25. }
  26. @import "styles/colors.rasi"
  27. * {
  28. background-color: @bg;
  29. }
  30. window {
  31. border: 0px;
  32. border-color: @ac;
  33. border-radius: 0px;
  34. padding: 30;
  35. width: 20%;
  36. height: 100%;
  37. }
  38. prompt {
  39. spacing: 0;
  40. border: 0;
  41. text-color: @fg;
  42. }
  43. textbox-prompt-colon {
  44. expand: false;
  45. str: " ";
  46. margin: 0px 4px 0px 0px;
  47. text-color: inherit;
  48. }
  49. entry {
  50. spacing: 0;
  51. text-color: @fg;
  52. }
  53. case-indicator {
  54. spacing: 0;
  55. text-color: @fg;
  56. }
  57. inputbar {
  58. spacing: 0px;
  59. text-color: @fg;
  60. padding: 1px;
  61. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  62. }
  63. mainbox {
  64. border: 0px;
  65. border-color: @ac;
  66. padding: 6;
  67. }
  68. listview {
  69. lines: 15;
  70. columns: 1;
  71. fixed-height: 0;
  72. border: 0px;
  73. border-color: @ac;
  74. spacing: 4px;
  75. scrollbar: false;
  76. padding: 15px 5px 0px 5px;
  77. }
  78. element-text, element-icon {
  79. background-color: #00000000;
  80. text-color: inherit;
  81. }
  82. element {
  83. border: 0px;
  84. border-radius: 4px;
  85. padding: 5px;
  86. }
  87. element normal.normal {
  88. background-color: @bg;
  89. text-color: @fg;
  90. }
  91. element normal.urgent {
  92. background-color: @bg;
  93. text-color: @red;
  94. }
  95. element normal.active {
  96. background-color: @green;
  97. text-color: @bg;
  98. }
  99. element selected.normal {
  100. background-color: @ac;
  101. text-color: @bg;
  102. }
  103. element selected.urgent {
  104. background-color: @bg;
  105. text-color: @red;
  106. }
  107. element selected.active {
  108. background-color: @ac;
  109. text-color: @bg;
  110. }
  111. element alternate.normal {
  112. background-color: @bg;
  113. text-color: @fg;
  114. }
  115. element alternate.urgent {
  116. background-color: @bg;
  117. text-color: @fg;
  118. }
  119. element alternate.active {
  120. background-color: @bg;
  121. text-color: @fg;
  122. }
  123. sidebar {
  124. border: 0px;
  125. border-color: @ac;
  126. border-radius: 0px;
  127. }
  128. button {
  129. horizontal-align: 0.5;
  130. vertical-align: 0.5;
  131. background-color: @red;
  132. margin: 5px;
  133. padding: 5px;
  134. text-color: @fg;
  135. border: 0px;
  136. border-radius: 4px;
  137. border-color: @fg;
  138. }
  139. button selected {
  140. background-color: @green;
  141. text-color: @fg;
  142. border: 0px;
  143. border-radius: 4px;
  144. border-color: @fg;
  145. }
  146. scrollbar {
  147. width: 4px;
  148. border: 0px;
  149. handle-color: @fg;
  150. handle-width: 8px;
  151. padding: 0;
  152. }
  153. message {
  154. border: 0px;
  155. border-color: @ac;
  156. padding: 1px;
  157. }
  158. textbox {
  159. text-color: @fg;
  160. }