diff options
| author | Don Williams <don.e.williams@gmail.com> | 2026-01-07 15:28:44 -0500 |
|---|---|---|
| committer | Don Williams <don.e.williams@gmail.com> | 2026-01-07 15:28:44 -0500 |
| commit | 9aaba19c1c2dbd920f275412044060fe8ad234e4 (patch) | |
| tree | d35f6663e5fef6b8f8f66efbe4bb3abcd3db70d3 /config/rofi | |
| parent | 06662cbe00e83e2100e5b50d30c34c5a1be86df3 (diff) | |
Changed to non urgent colors
With some themes, KooL_style-4 and KooL_style-7 selecting Dracula with the
existing code sourced "selected" from Wallust colors.
Resulting in bright red accent colors
Accents now use @color11 and @color12
Hopefully this finally resolves the issues
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: config/rofi/themes/KooL_style-4.rasi
modified: config/rofi/themes/KooL_style-7.rasi
Diffstat (limited to 'config/rofi')
| -rw-r--r-- | config/rofi/themes/KooL_style-4.rasi | 28 | ||||
| -rw-r--r-- | config/rofi/themes/KooL_style-7.rasi | 5 |
2 files changed, 18 insertions, 15 deletions
diff --git a/config/rofi/themes/KooL_style-4.rasi b/config/rofi/themes/KooL_style-4.rasi index 5742b848..9c163edb 100644 --- a/config/rofi/themes/KooL_style-4.rasi +++ b/config/rofi/themes/KooL_style-4.rasi @@ -23,11 +23,12 @@ configuration { /*****----- Global Properties -----*****/ * { background-alt: @color1; - selected: @color12; - active: @color11; + /* swap accents: selected uses color11, active uses color12 */ + selected: @color11; + active: @color12; urgent: @color13; - border-color: @color11; + border-color: @active; handle-color: @selected; background-color: @background; foreground-color: @foreground; @@ -38,11 +39,12 @@ configuration { urgent-foreground: @background; active-background: @active; active-foreground: @background; + /* force selection to use the selected accent, not imported selected-* values */ selected-normal-background: @selected; selected-normal-foreground: @background; - selected-urgent-background: @active; + selected-urgent-background: @selected; selected-urgent-foreground: @background; - selected-active-background: @active; + selected-active-background: @selected; selected-active-foreground: @background; alternate-normal-background: @background; alternate-normal-foreground: @foreground; @@ -219,16 +221,16 @@ element normal.active { element-text selected, element selected.normal { - background-color: @selected-normal-background; - text-color: @selected-normal-foreground; + background-color: @selected; + text-color: @background; } element selected.urgent { - background-color: @selected-urgent-background; - text-color: @selected-urgent-foreground; + background-color: @selected; + text-color: @background; } element selected.active { - background-color: @selected-active-background; - text-color: @selected-active-foreground; + background-color: @selected; + text-color: @background; } element alternate.normal { background-color: @alternate-normal-background; @@ -285,8 +287,8 @@ button selected { border: 2px 0px 2px 2px; border-radius: 6px; border-color: @border-color; - background-color: @selected-normal-foreground; - text-color: @selected-normal-background; + background-color: @selected; + text-color: @background; } /*****----- Message -----*****/ diff --git a/config/rofi/themes/KooL_style-7.rasi b/config/rofi/themes/KooL_style-7.rasi index c66d9be1..842cdc06 100644 --- a/config/rofi/themes/KooL_style-7.rasi +++ b/config/rofi/themes/KooL_style-7.rasi @@ -24,8 +24,9 @@ configuration { /*****----- Global Properties -----*****/ * { background-alt: @color1; - selected: @color12; - active: @color11; + /* swap accents: selected uses color11, active uses color12 */ + selected: @color11; + active: @color12; urgent: @color13; } |
