diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-01-07 23:20:23 -0500 |
|---|---|---|
| committer | Don Williams <don.e.williams@gmail.com> | 2026-01-07 23:20:23 -0500 |
| commit | 80842a092b0e254c4570da9d4961606a82c2cb74 (patch) | |
| tree | 81df204a467917ed12b8660c3943dc75a8303360 | |
| parent | 7c57b620bd998cc171d24ad0c39ec3df5ccfe4e1 (diff) | |
Fixing colors on two rofi styles KooL_style-8 and -6
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: config/rofi/themes/KooL_style-6.rasi
modified: config/rofi/themes/KooL_style-8.rasi
| -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; } |
