fix: Navigation button theming

This commit is contained in:
Michael Aaron Murphy 2022-11-01 18:13:00 +01:00
parent 4a899189e6
commit 702ea033af
2 changed files with 9 additions and 8 deletions

View file

@ -694,19 +694,15 @@ impl svg::StyleSheet for Theme {
/*
* TODO: Text
*/
#[derive(Clone, Copy)]
#[derive(Clone, Copy, Default)]
pub enum Text {
Accent,
#[default]
Default,
Color(Color),
Custom(fn(&Theme) -> text::Appearance),
}
impl Default for Text {
fn default() -> Self {
Self::Default
}
}
impl From<Color> for Text {
fn from(color: Color) -> Self {
Text::Color(color)
@ -718,6 +714,9 @@ impl text::StyleSheet for Theme {
fn appearance(&self, style: Self::Style) -> text::Appearance {
match style {
Text::Accent => text::Appearance {
color: Some(self.cosmic().accent.base.into())
},
Text::Default => Default::default(),
Text::Color(c) => text::Appearance { color: Some(c) },
Text::Custom(f) => f(self),