From 54eb5487b4d57d3203c5e9af33fbcebcecf04a00 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Wed, 15 May 2024 14:50:21 -0400 Subject: [PATCH] fix(applet): remove text color style --- src/applet/mod.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/applet/mod.rs b/src/applet/mod.rs index bad203f5..fcd04d8c 100644 --- a/src/applet/mod.rs +++ b/src/applet/mod.rs @@ -291,11 +291,7 @@ impl Context { Size::PanelSize(PanelSize::XS) => crate::widget::text::body, Size::Hardcoded(_) => crate::widget::text, }; - t(msg) - .style(crate::theme::Text::Color(Color::from( - THEME.with(|t| t.borrow().cosmic().on_bg_color()), - ))) - .font(crate::font::FONT) + t(msg).font(crate::font::FONT) } }