summary refs log tree commit diff stats
path: root/users
diff options
context:
space:
mode:
authorsils <sils@sils.li>2023-10-30 18:54:01 +0100
committersils <sils@sils.li>2023-10-30 18:54:01 +0100
commitc3ec6bc8675ebf4e9d4ea13971eac4ba0257da50 (patch)
treeab379c0d31e407ce1050d0c7bf38684ad9248c56 /users
parentfeat(u/sils/packages): add brave (diff)
downloadnix-config-c3ec6bc8675ebf4e9d4ea13971eac4ba0257da50.tar.gz
nix-config-c3ec6bc8675ebf4e9d4ea13971eac4ba0257da50.zip
fix(u/sils/rofi): include rounded-common.rasi in theme file
Diffstat (limited to 'users')
-rw-r--r--users/sils/rofi/rounded-gray-dark.rasi95
1 files changed, 94 insertions, 1 deletions
diff --git a/users/sils/rofi/rounded-gray-dark.rasi b/users/sils/rofi/rounded-gray-dark.rasi
index 943280d..754c53c 100644
--- a/users/sils/rofi/rounded-gray-dark.rasi
+++ b/users/sils/rofi/rounded-gray-dark.rasi
@@ -15,4 +15,97 @@
     fg3:    #3D3D3D;
 }
 
-@import "rounded-common.rasi"
+/*******************************************************************************
+ * ROUNDED THEME FOR ROFI 
+ * User                 : LR-Tech               
+ * Theme Repo           : https://github.com/lr-tech/rofi-themes-collection
+ *******************************************************************************/
+
+* {
+    font:   "Roboto 12";
+
+    background-color:   transparent;
+    text-color:         @fg0;
+
+    margin:     0px;
+    padding:    0px;
+    spacing:    0px;
+}
+
+window {
+    location:       center;
+    width:          480;
+    border-radius:  24px;
+    
+    background-color:   @bg0;
+}
+
+mainbox {
+    padding:    12px;
+}
+
+inputbar {
+    background-color:   @bg1;
+    border-color:       @bg3;
+
+    border:         2px;
+    border-radius:  16px;
+
+    padding:    8px 16px;
+    spacing:    8px;
+    children:   [ prompt, entry ];
+}
+
+prompt {
+    text-color: @fg2;
+}
+
+entry {
+    placeholder:        "Search";
+    placeholder-color:  @fg3;
+}
+
+message {
+    margin:             12px 0 0;
+    border-radius:      16px;
+    border-color:       @bg2;
+    background-color:   @bg2;
+}
+
+textbox {
+    padding:    8px 24px;
+}
+
+listview {
+    background-color:   transparent;
+
+    margin:     12px 0 0;
+    lines:      8;
+    columns:    1;
+
+    fixed-height: false;
+}
+
+element {
+    padding:        8px 16px;
+    spacing:        8px;
+    border-radius:  16px;
+}
+
+element normal active {
+    text-color: @bg3;
+}
+
+element selected normal, element selected active {
+    background-color:   @bg3;
+}
+
+element-icon {
+    size:           1em;
+    vertical-align: 0.5;
+}
+
+element-text {
+    text-color: inherit;
+}
+