From 7b8ed32a68b6dc6d3d9575f6fe113ea1623e6094 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Wed, 7 Jan 2026 15:04:53 -0500 Subject: Found Urgent was hard coded RED, setting to --- config/rofi/themes/KooL_style-4.rasi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config/rofi/themes/KooL_style-4.rasi') diff --git a/config/rofi/themes/KooL_style-4.rasi b/config/rofi/themes/KooL_style-4.rasi index ea7b1977..ea8d2c39 100644 --- a/config/rofi/themes/KooL_style-4.rasi +++ b/config/rofi/themes/KooL_style-4.rasi @@ -25,7 +25,7 @@ configuration { background-alt: @color1; selected: @color12; active: @color11; - urgent: #F7768E; + urgent: @color13; border-color: @color11; handle-color: @selected; -- cgit v1.2.3 From c5c3a82383fc6f59d73f5284b2fcfa250d5e78ed Mon Sep 17 00:00:00 2001 From: Don Williams Date: Wed, 7 Jan 2026 15:16:08 -0500 Subject: Fixed KooL_style-4 was hard coded to red On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: config/rofi/themes/KooL_style-4.rasi --- config/rofi/themes/KooL_style-4.rasi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'config/rofi/themes/KooL_style-4.rasi') diff --git a/config/rofi/themes/KooL_style-4.rasi b/config/rofi/themes/KooL_style-4.rasi index ea8d2c39..5742b848 100644 --- a/config/rofi/themes/KooL_style-4.rasi +++ b/config/rofi/themes/KooL_style-4.rasi @@ -42,8 +42,8 @@ configuration { selected-normal-foreground: @background; selected-urgent-background: @active; selected-urgent-foreground: @background; - selected-active-background: @urgent; - selected-active-foreground: @color12; + selected-active-background: @active; + selected-active-foreground: @background; alternate-normal-background: @background; alternate-normal-foreground: @foreground; alternate-urgent-background: @urgent; -- cgit v1.2.3 From 9aaba19c1c2dbd920f275412044060fe8ad234e4 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Wed, 7 Jan 2026 15:28:44 -0500 Subject: 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 --- config/rofi/themes/KooL_style-4.rasi | 28 +++++++++++++++------------- config/rofi/themes/KooL_style-7.rasi | 5 +++-- 2 files changed, 18 insertions(+), 15 deletions(-) (limited to 'config/rofi/themes/KooL_style-4.rasi') 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; } -- cgit v1.2.3 From 4a343d6cb9790f63c81cc28218c39e0388495c94 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Wed, 7 Jan 2026 15:53:28 -0500 Subject: Still issues with style-4/-7 remapping again --- config/rofi/themes/KooL_style-4.rasi | 6 +++--- config/rofi/themes/KooL_style-7.rasi | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'config/rofi/themes/KooL_style-4.rasi') diff --git a/config/rofi/themes/KooL_style-4.rasi b/config/rofi/themes/KooL_style-4.rasi index 9c163edb..1a11b64f 100644 --- a/config/rofi/themes/KooL_style-4.rasi +++ b/config/rofi/themes/KooL_style-4.rasi @@ -23,9 +23,9 @@ configuration { /*****----- Global Properties -----*****/ * { background-alt: @color1; - /* swap accents: selected uses color11, active uses color12 */ - selected: @color11; - active: @color12; + /* selected uses color12, active uses color11 (match other working styles) */ + selected: @color12; + active: @color11; urgent: @color13; border-color: @active; diff --git a/config/rofi/themes/KooL_style-7.rasi b/config/rofi/themes/KooL_style-7.rasi index 842cdc06..5df4092e 100644 --- a/config/rofi/themes/KooL_style-7.rasi +++ b/config/rofi/themes/KooL_style-7.rasi @@ -24,9 +24,9 @@ configuration { /*****----- Global Properties -----*****/ * { background-alt: @color1; - /* swap accents: selected uses color11, active uses color12 */ - selected: @color11; - active: @color12; + /* selected uses color12, active uses color11 (match other working styles) */ + selected: @color12; + active: @color11; urgent: @color13; } -- cgit v1.2.3 From db65793f0894fa8c3d8df94ed4b3b2a1c6a4f50e Mon Sep 17 00:00:00 2001 From: Don Williams Date: Wed, 7 Jan 2026 16:03:30 -0500 Subject: Trying a different mapping for style-4/7 --- config/rofi/themes/KooL_style-4.rasi | 2 +- config/rofi/themes/KooL_style-7.rasi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'config/rofi/themes/KooL_style-4.rasi') diff --git a/config/rofi/themes/KooL_style-4.rasi b/config/rofi/themes/KooL_style-4.rasi index 1a11b64f..b1859c37 100644 --- a/config/rofi/themes/KooL_style-4.rasi +++ b/config/rofi/themes/KooL_style-4.rasi @@ -22,7 +22,7 @@ configuration { /*****----- Global Properties -----*****/ * { - background-alt: @color1; + background-alt: @color0; /* selected uses color12, active uses color11 (match other working styles) */ selected: @color12; active: @color11; diff --git a/config/rofi/themes/KooL_style-7.rasi b/config/rofi/themes/KooL_style-7.rasi index 5df4092e..bea2ba47 100644 --- a/config/rofi/themes/KooL_style-7.rasi +++ b/config/rofi/themes/KooL_style-7.rasi @@ -23,7 +23,7 @@ configuration { /*****----- Global Properties -----*****/ * { - background-alt: @color1; + background-alt: @color0; /* selected uses color12, active uses color11 (match other working styles) */ selected: @color12; active: @color11; -- cgit v1.2.3