1

Modules/Btop+Rofi: Make selected element coloring slightly more consistent

This commit is contained in:
2025-07-22 17:35:57 +02:00
parent db8ada4360
commit 59075d1619
2 changed files with 25 additions and 19 deletions

View File

@ -34,10 +34,10 @@ in {
theme[hi_fg]=${color.hexS.accent} theme[hi_fg]=${color.hexS.accent}
# Background color of selected item in processes box # Background color of selected item in processes box
theme[selected_bg]=${color.hexS.surface1} theme[selected_bg]=${color.hexS.accentDim}
# Foreground color of selected item in processes box # Foreground color of selected item in processes box
theme[selected_fg]=${color.hexS.accent} theme[selected_fg]=${color.hexS.accentText}
# Color of inactive/disabled text # Color of inactive/disabled text
theme[inactive_fg]=${color.hexS.overlay0} theme[inactive_fg]=${color.hexS.overlay0}

View File

@ -62,21 +62,7 @@ in {
background-color = mkLiteral trans; background-color = mkLiteral trans;
}; };
"message" = { # TOP INPUT BAR START
background-color = mkLiteral trans;
};
"error-message" = {
background-color = mkLiteral trans;
margin = mkLiteral "0px 0px 10px 0px";
};
"textbox" = {
background-color = mkLiteral trans;
padding = 6;
margin = mkLiteral "10px 10px 0px 10px";
border-radius = 3;
};
"inputbar" = { "inputbar" = {
children = builtins.map mkLiteral ["prompt" "entry"]; children = builtins.map mkLiteral ["prompt" "entry"];
@ -101,6 +87,26 @@ in {
border-color = mkLiteral color.hexS.accentHl; border-color = mkLiteral color.hexS.accentHl;
}; };
# MESSAGEBOX (usually not visible)
"message" = {
background-color = mkLiteral trans;
};
"error-message" = {
background-color = mkLiteral trans;
margin = mkLiteral "0px 0px 10px 0px";
};
"textbox" = {
background-color = mkLiteral trans;
padding = 6;
margin = mkLiteral "10px 10px 0px 10px";
border-radius = 3;
};
# LISTVIEW
"listview" = { "listview" = {
# border = mkLiteral "0px 0px 0px"; # border = mkLiteral "0px 0px 0px";
padding = 0; padding = 0;
@ -109,7 +115,7 @@ in {
background-color = mkLiteral trans; background-color = mkLiteral trans;
border = mkLiteral "2 solid 2 solid 2 solid 2 solid"; border = mkLiteral "2 solid 2 solid 2 solid 2 solid";
border-radius = 3; border-radius = 3;
border-color = mkLiteral color.hexS.accentHl; border-color = mkLiteral color.hexS.accentDim;
}; };
"element" = { "element" = {
@ -125,7 +131,7 @@ in {
}; };
"element selected" = { "element selected" = {
background-color = mkLiteral color.hexS.accentHl; background-color = mkLiteral color.hexS.accentDim;
text-color = mkLiteral color.hexS.accentText; text-color = mkLiteral color.hexS.accentText;
}; };
}; };