Fixed styling issues for various elements that weren't being applied via settings. (#118)

* Popups are now styles properly and can be themed. closes #115

* Added the ability to style media menu card color and transparency. Made confirmation dialogue optional.

* Increase radius

* Move actions inside the function to reflect updated values.
This commit is contained in:
Jas Singh
2024-08-12 21:38:27 -07:00
committed by GitHub
parent 79bf05d9c9
commit b23f1a32cb
11 changed files with 96 additions and 15 deletions

View File

@@ -222,6 +222,10 @@ const options = mkOptions(OPTIONS, {
dimtext: opt(colors.surface2),
feinttext: opt(colors.surface0),
label: opt(colors.lavender),
popover: {
text: opt(colors.lavender),
background: opt(secondary_colors.mantle)
},
listitems: {
passive: opt(colors.text),
active: opt(secondary_colors.lavender)
@@ -272,6 +276,10 @@ const options = mkOptions(OPTIONS, {
background: {
color: opt(colors.crust),
},
card: {
color: opt(colors.base),
tint: opt(85),
},
border: {
color: opt(colors.surface0),
},
@@ -699,6 +707,7 @@ const options = mkOptions(OPTIONS, {
menus: {
dashboard: {
powermenu: {
confirmation: opt(true),
sleep: opt("systemctl suspend"),
reboot: opt("systemctl reboot"),
logout: opt("pkill Hyprland"),