From 80d13f40e87cfdd15fcb3f3864a1e84596890aa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Maxmili=C3=A1n=20St=C5=99=C3=ADbrn=C3=BD?= Date: Fri, 20 Mar 2026 20:37:39 +0100 Subject: [PATCH] transparent background --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 26f1ccb..218fed1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -83,7 +83,7 @@ impl App { fn style(&self, theme: &iced::Theme) -> iced::theme::Style { iced::theme::Style { - background_color: Color::from_rgba(0., 0., 0., 1.), + background_color: Color::TRANSPARENT, text_color: theme.palette().text, } }