config2.rasi 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. * {
  2. /* Dracula theme colour palette */
  3. drac-bgd: #282a36;
  4. drac-cur: #44475a;
  5. drac-fgd: #f8f8f2;
  6. drac-cmt: #6272a4;
  7. drac-cya: #8be9fd;
  8. drac-grn: #50fa7b;
  9. drac-ora: #ffb86c;
  10. drac-pnk: #ff79c6;
  11. drac-pur: #bd93f9;
  12. drac-red: #ff5555;
  13. drac-yel: #f1fa8c;
  14. font: "Hack 12";
  15. foreground: @drac-fgd;
  16. background-color: @drac-bgd;
  17. active-background: @drac-pnk;
  18. urgent-background: @drac-red;
  19. urgent-foreground: @drac-bgd;
  20. selected-background: @active-background;
  21. selected-urgent-background: @urgent-background;
  22. selected-active-background: @active-background;
  23. separatorcolor: @active-background;
  24. bordercolor: #6272a4;
  25. }
  26. configuration {
  27. show-icons: true;
  28. display-drun: "";
  29. disable-history: false;
  30. }
  31. #window {
  32. background-color: @background-color;
  33. border: 3;
  34. border-radius: 6;
  35. border-color: @bordercolor;
  36. padding: 15;
  37. }
  38. #mainbox {
  39. border: 0;
  40. padding: 0;
  41. }
  42. #message {
  43. border: 0px;
  44. border-color: @separatorcolor;
  45. padding: 1px ;
  46. }
  47. #textbox {
  48. text-color: @foreground;
  49. }
  50. #listview {
  51. fixed-height: 0;
  52. border: 0px;
  53. border-color: @bordercolor;
  54. spacing: 2px ;
  55. scrollbar: false;
  56. padding: 2px 0px 0px ;
  57. }
  58. #element {
  59. border: 0;
  60. padding: 3px ;
  61. }
  62. #element.normal.normal {
  63. background-color: @background-color;
  64. text-color: @foreground;
  65. }
  66. #element.normal.urgent {
  67. background-color: @urgent-background;
  68. text-color: @urgent-foreground;
  69. }
  70. #element.normal.active {
  71. background-color: @active-background;
  72. text-color: @background-color;
  73. }
  74. #element.selected.normal {
  75. background-color: @selected-background;
  76. text-color: @foreground;
  77. }
  78. #element.selected.urgent {
  79. background-color: @selected-urgent-background;
  80. text-color: @foreground;
  81. }
  82. #element.selected.active {
  83. background-color: @selected-active-background;
  84. text-color: @background-color;
  85. }
  86. #element.alternate.normal {
  87. background-color: @background-color;
  88. text-color: @foreground;
  89. }
  90. #element.alternate.urgent {
  91. background-color: @urgent-background;
  92. text-color: @foreground;
  93. }
  94. #element.alternate.active {
  95. background-color: @active-background;
  96. text-color: @foreground;
  97. }
  98. #scrollbar {
  99. width: 2px ;
  100. border: 0;
  101. handle-width: 8px ;
  102. padding: 0;
  103. }
  104. #sidebar {
  105. border: 2px dash 0px 0px ;
  106. border-color: @separatorcolor;
  107. }
  108. #button.selected {
  109. background-color: @selected-background;
  110. text-color: @foreground;
  111. }
  112. #inputbar {
  113. spacing: 0;
  114. text-color: @foreground;
  115. padding: 1px ;
  116. }
  117. #case-indicator {
  118. spacing: 0;
  119. text-color: @foreground;
  120. }
  121. #entry {
  122. spacing: 0;
  123. text-color: @drac-cya;
  124. }
  125. #prompt {
  126. spacing: 0;
  127. text-color: @drac-grn;
  128. }
  129. #inputbar {
  130. children: [ prompt,textbox-prompt-colon,entry,case-indicator ];
  131. }
  132. #textbox-prompt-colon {
  133. expand: false;
  134. str: ">";
  135. margin: 0px 0.3em 0em 0em ;
  136. text-color: @drac-pur;
  137. }
  138. element-text, element-icon {
  139. background-color: inherit;
  140. text-color: inherit;
  141. }