diff options
| -rw-r--r-- | config/rofi/themes/KooL_style-6.rasi | 7 | ||||
| -rw-r--r-- | config/rofi/themes/KooL_style-8.rasi | 7 |
2 files changed, 13 insertions, 1 deletions
diff --git a/config/rofi/themes/KooL_style-6.rasi b/config/rofi/themes/KooL_style-6.rasi index f0331fdf..a25eaa19 100644 --- a/config/rofi/themes/KooL_style-6.rasi +++ b/config/rofi/themes/KooL_style-6.rasi @@ -169,7 +169,12 @@ element normal.urgent { text-color: @foreground; } -element-text selected, +/* Separate rules so selected text does not paint a second background */ +element-text selected { + background-color: transparent; + text-color: @background; +} + element normal.active { background-color: @active; text-color: @foreground; diff --git a/config/rofi/themes/KooL_style-8.rasi b/config/rofi/themes/KooL_style-8.rasi index 37ce0172..a3dea01a 100644 --- a/config/rofi/themes/KooL_style-8.rasi +++ b/config/rofi/themes/KooL_style-8.rasi @@ -23,6 +23,13 @@ configuration { /* ---- Global Properties ---- */ * { + /* Define palette mappings used below */ + selected: @color12; /* accent */ + active: @color11; /* secondary */ + urgent: @color13; /* alerts */ + text-selected: @background; /* readable over accent */ + text-color: @foreground; + border-width: 2px; border-radius: 12px; } |
