fix(applet): remove text color style

This commit is contained in:
Ashley Wulber 2024-05-15 14:50:21 -04:00 committed by Ashley Wulber
parent be329403c1
commit 54eb5487b4

View file

@ -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)
}
}