blurry_full.rasi 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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 Bold 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. * {
  19. background: #00000000;
  20. background-alt: #00000000;
  21. background-bar: #f2f2f215;
  22. foreground: #f2f2f2EE;
  23. accent: #3DAEE966;
  24. }
  25. window {
  26. transparency: "real";
  27. background-color: @background;
  28. text-color: @foreground;
  29. border: 0px;
  30. border-color: @border;
  31. border-radius: 0px;
  32. width: 100%;
  33. height: 100%;
  34. }
  35. prompt {
  36. enabled: true;
  37. padding: 0.30% 1% 0% -0.5%;
  38. background-color: @background-alt;
  39. text-color: @foreground;
  40. font: "FantasqueSansMono Nerd Font 12";
  41. }
  42. entry {
  43. background-color: @background-alt;
  44. text-color: @foreground;
  45. placeholder-color: @foreground;
  46. expand: true;
  47. horizontal-align: 0;
  48. placeholder: "Search";
  49. padding: 0.10% 0% 0% 0%;
  50. blink: true;
  51. }
  52. inputbar {
  53. children: [ prompt, entry ];
  54. background-color: @background-bar;
  55. text-color: @foreground;
  56. expand: false;
  57. border: 0% 0% 0% 0%;
  58. border-radius: 12px;
  59. border-color: @accent;
  60. margin: 0% 25% 0% 25%;
  61. padding: 1.5%;
  62. }
  63. listview {
  64. background-color: @background-alt;
  65. columns: 8;
  66. lines: 4;
  67. spacing: 0%;
  68. cycle: false;
  69. dynamic: true;
  70. layout: vertical;
  71. }
  72. mainbox {
  73. background-color: @background-alt;
  74. border: 0% 0% 0% 0%;
  75. border-radius: 0% 0% 0% 0%;
  76. border-color: @accent;
  77. children: [ inputbar, listview ];
  78. spacing: 8%;
  79. padding: 10% 12.5% 10% 12.5%;
  80. }
  81. element {
  82. background-color: @background-alt;
  83. text-color: @foreground;
  84. orientation: vertical;
  85. border-radius: 0%;
  86. padding: 2.5% 0% 2.5% 0%;
  87. }
  88. element-icon {
  89. background-color: @background;
  90. text-color: inherit;
  91. horizontal-align: 0.5;
  92. vertical-align: 0.5;
  93. size: 80px;
  94. border: 0px;
  95. }
  96. element-text {
  97. background-color: @background;
  98. text-color: inherit;
  99. expand: true;
  100. horizontal-align: 0.5;
  101. vertical-align: 0.5;
  102. margin: 0.5% 0.5% -0.5% 0.5%;
  103. }
  104. element selected {
  105. background-color: @background-bar;
  106. text-color: @foreground;
  107. border: 0% 0% 0% 0%;
  108. border-radius: 12px;
  109. border-color: @accent;
  110. }