summary refs log tree commit diff
path: root/rofi/spotlight.rasi
diff options
context:
space:
mode:
authornoa@gaiwan.org2024-03-23 16:22:13 +0000
committernoa@gaiwan.org2024-03-23 16:22:13 +0000
commit5c88f40b952b537fd071d8ee7bb00fda62d43865 (patch)
tree51249efeed23d2795e58ac91c69a0ee04c37178a /rofi/spotlight.rasi
parent7849980d182edd758325991012979e37689d8cae (diff)
Add rofi config and theme
Diffstat (limited to 'rofi/spotlight.rasi')
-rw-r--r--rofi/spotlight.rasi98
1 files changed, 98 insertions, 0 deletions
diff --git a/rofi/spotlight.rasi b/rofi/spotlight.rasi
new file mode 100644
index 0000000..395e3f0
--- /dev/null
+++ b/rofi/spotlight.rasi
@@ -0,0 +1,98 @@
+/*******************************************************************************
+ * MACOS SPOTLIGHT LIKE THEME FOR ROFI 
+ * User                 : LR-Tech               
+ * Theme Repo           : https://github.com/lr-tech/rofi-themes-collection
+ *******************************************************************************/
+
+* {
+    font:   "Montserrat 12";
+
+    bg0:     #F5F5F5BF;
+    bg1:     #7E7E7E80;
+    bg2:     #0860F2E6;
+
+    fg0:     #242424;
+    fg1:     #FFFFFF;
+    fg2:     #24242480;
+
+    background-color:   transparent;
+    text-color:         @fg0;
+
+    margin:     0;
+    padding:    0;
+    spacing:    0;
+}
+
+window {
+    background-color:   @bg0;
+
+    location:       center;
+    width:          640;
+    border-radius:  8;
+}
+
+inputbar {
+    font:       "Montserrat 20";
+    padding:    12px;
+    spacing:    12px;
+    children:   [ icon-search, entry ];
+}
+
+icon-search {
+    expand:     false;
+    filename:   "search";
+    size: 28px;
+}
+
+icon-search, entry, element-icon, element-text {
+    vertical-align: 0.5;
+}
+
+entry {
+    font:   inherit;
+
+    placeholder         : "Search";
+    placeholder-color   : @fg2;
+}
+
+message {
+    border:             2px 0 0;
+    border-color:       @bg1;
+    background-color:   @bg1;
+}
+
+textbox {
+    padding:    8px 24px;
+}
+
+listview {
+    lines:      10;
+    columns:    1;
+
+    fixed-height:   false;
+    border:         1px 0 0;
+    border-color:   @bg1;
+}
+
+element {
+    padding:            8px 16px;
+    spacing:            16px;
+    background-color:   transparent;
+}
+
+element normal active {
+    text-color: @bg2;
+}
+
+element selected normal, element selected active {
+    background-color:   @bg2;
+    text-color:         @fg1;
+}
+
+element-icon {
+    size:   1em;
+}
+
+element-text {
+    text-color: inherit;
+}