spotlight-dark.rasi 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*******************************************************************************
  2. * MACOS SPOTLIGHT LIKE DARK THEME FOR ROFI
  3. * User : LR-Tech
  4. * Theme Repo : https://github.com/lr-tech/rofi-themes-collection
  5. *******************************************************************************/
  6. * {
  7. font: "Iosevka Nerd Font 12";
  8. bg0: #1f1f28;
  9. bg1: #7E7E7E80;
  10. bg2: #2D4F67;
  11. fg0: #DCD7BA;
  12. fg1: #FFFFFF;
  13. fg2: #DEDEDE80;
  14. background-color: transparent;
  15. text-color: @fg0;
  16. margin: 0;
  17. padding: 0;
  18. spacing: 0;
  19. }
  20. window {
  21. background-color: @bg0;
  22. location: center;
  23. width: 640;
  24. border-radius: 8;
  25. }
  26. inputbar {
  27. font: "Iosevka Nerd Font 20";
  28. padding: 12px;
  29. spacing: 12px;
  30. children: [ icon-search, entry ];
  31. }
  32. icon-search {
  33. expand: false;
  34. filename: "search";
  35. size: 28px;
  36. }
  37. icon-search, entry, element-icon, element-text {
  38. vertical-align: 0.5;
  39. }
  40. entry {
  41. font: inherit;
  42. placeholder : "Search";
  43. placeholder-color : @fg2;
  44. }
  45. message {
  46. border: 2px 0 0;
  47. border-color: @bg1;
  48. background-color: @bg1;
  49. }
  50. textbox {
  51. padding: 8px 24px;
  52. }
  53. listview {
  54. lines: 10;
  55. columns: 1;
  56. fixed-height: false;
  57. border: 1px 0 0;
  58. border-color: @bg1;
  59. }
  60. element {
  61. padding: 8px 16px;
  62. spacing: 16px;
  63. background-color: transparent;
  64. }
  65. element normal active {
  66. text-color: @bg2;
  67. }
  68. element alternate active {
  69. text-color: @bg2;
  70. }
  71. element selected normal, element selected active {
  72. background-color: @bg2;
  73. text-color: @fg1;
  74. }
  75. element-icon {
  76. size: 1em;
  77. }
  78. element-text {
  79. text-color: inherit;
  80. }