config1.rasi 2.9 KB

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