chore: change inactive opacity to 50%

This commit is contained in:
Vukašin Vojinović 2024-06-14 22:51:12 +02:00 committed by Michael Murphy
parent f820eb7ffe
commit 15a1a80178

View file

@ -484,7 +484,7 @@ impl container::StyleSheet for Theme {
} else {
use crate::ext::ColorExt;
let unfocused_color = Color::from(cosmic.background.component.on)
.blend_alpha(cosmic.background.base.into(), 0.75);
.blend_alpha(cosmic.background.base.into(), 0.5);
(unfocused_color, unfocused_color)
};