From 15a1a80178b6293099d376a63f927ea70181901d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vuka=C5=A1in=20Vojinovi=C4=87?= <150025636+git-f0x@users.noreply.github.com> Date: Fri, 14 Jun 2024 22:51:12 +0200 Subject: [PATCH] chore: change inactive opacity to 50% --- src/theme/style/iced.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/theme/style/iced.rs b/src/theme/style/iced.rs index 6f3388c4..5591a051 100644 --- a/src/theme/style/iced.rs +++ b/src/theme/style/iced.rs @@ -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) };