Skip to content

Commit

Permalink
Fix contrast on bottom-bar
Browse files Browse the repository at this point in the history
  • Loading branch information
lainsce committed Aug 5, 2024
1 parent f467410 commit f3e25e0
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions Helium/gtk-4.0/_tauos.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1102,14 +1102,14 @@ $colors: (
}

.bottom-bar {
background: $accent_container_bg_color;
color: $view_fg_color;
background: state-color($surface_container_bg_color, $accent_bg_color, 2);
color: $surface_fg_color;
padding: px-to-rem(8px) px-to-rem(18px);
min-height: px-to-rem(48px);

&:disabled {
background: gtkalpha($view_fg_color, 0.12);
color: gtkalpha($view_fg_color, 0.38);
background: gtkalpha($surface_fg_color, 0.12);
color: gtkalpha($surface_fg_color, 0.38);
}
}

Expand Down Expand Up @@ -1477,6 +1477,12 @@ $colors: (
& windowcontrols > button > image {
background: $surface_container_highest_bg_color;
}
& windowcontrols > button:hover > image {
background: $accent_bg_color;
}
& windowcontrols > button:active > image {
background: $surface_container_highest_bg_color;
}

& .appbar {
background: bg-color(2);
Expand Down

0 comments on commit f3e25e0

Please sign in to comment.