row_dropdown.rasi 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. *
  3. * Author : Aditya Shakya
  4. * Mail : adi1090x@gmail.com
  5. * Github : @adi1090x
  6. * Twitter : @adi1090x
  7. *
  8. */
  9. configuration {
  10. font: "Noto Sans 10";
  11. show-icons: true;
  12. icon-theme: "Papirus";
  13. display-drun: "";
  14. drun-display-format: "{name}";
  15. disable-history: false;
  16. sidebar-mode: false;
  17. }
  18. /* -- Light -- */
  19. * {
  20. background: #e5e5e5ff;
  21. background-alt: #00000000;
  22. background-bar: #FFFFFFFF;
  23. foreground: #000000A6;
  24. accent: #80808066;
  25. border: #1A73E9FF;
  26. selected: #D7D7D7FF;
  27. }
  28. /* -- Dark -- */
  29. /*
  30. * {
  31. background: #212121ff;
  32. background-alt: #00000000;
  33. background-bar: #151515FF;
  34. foreground: #EDEDEDFF;
  35. accent: #EDEDED4d;
  36. border: #1A73E9FF;
  37. selected: #151515ff;
  38. }
  39. */
  40. window {
  41. transparency: "real";
  42. background-color: @background;
  43. text-color: @foreground;
  44. border: 0px;
  45. border-color: @border;
  46. border-radius: 0px 0px 50px 50px;
  47. width: 100%;
  48. location: north;
  49. x-offset: 0;
  50. y-offset: 0;
  51. }
  52. prompt {
  53. enabled: true;
  54. padding: 0.25% 0.75% 0% -0.25%;
  55. background-color: @background-alt;
  56. text-color: @foreground;
  57. font: "FantasqueSansMono Nerd Font 12";
  58. }
  59. entry {
  60. background-color: @background-alt;
  61. text-color: @foreground;
  62. placeholder-color: @foreground;
  63. expand: true;
  64. horizontal-align: 0.5;
  65. placeholder: "Search Applications";
  66. padding: -0.10% 0% 0% 0%;
  67. blink: true;
  68. }
  69. inputbar {
  70. children: [ entry ];
  71. background-color: @background-bar;
  72. text-color: @foreground;
  73. expand: false;
  74. border: 0% 0% 0.3% 0%;
  75. border-radius: 100%;
  76. border-color: @accent;
  77. margin: 0% 35% 0% 35%;
  78. padding: 1.25%;
  79. }
  80. listview {
  81. background-color: @background-alt;
  82. columns: 12;
  83. lines: 2;
  84. spacing: 0%;
  85. cycle: false;
  86. dynamic: true;
  87. layout: vertical;
  88. }
  89. mainbox {
  90. background-color: @background-alt;
  91. border: 0% 0% 0% 0%;
  92. border-radius: 0% 0% 0% 0%;
  93. border-color: @accent;
  94. children: [ listview, inputbar ];
  95. spacing: 2%;
  96. padding: 2% 1% 2% 1%;
  97. }
  98. element {
  99. background-color: @background-alt;
  100. text-color: @foreground;
  101. orientation: vertical;
  102. border-radius: 0%;
  103. padding: 2.5% 0% 2.5% 0%;
  104. }
  105. element-icon {
  106. background-color: inherit;
  107. text-color: inherit;
  108. horizontal-align: 0.5;
  109. vertical-align: 0.5;
  110. size: 80px;
  111. border: 0px;
  112. }
  113. element-text {
  114. background-color: inherit;
  115. text-color: inherit;
  116. expand: true;
  117. horizontal-align: 0.5;
  118. vertical-align: 0.5;
  119. margin: 0.5% 0.5% -0.5% 0.5%;
  120. }
  121. element selected {
  122. background-color: @selected;
  123. text-color: @foreground;
  124. border: 0% 0% 0.3% 0%;
  125. border-radius: 25px;
  126. border-color: @border;
  127. }