aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 33134eb..21c04b8 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -138,10 +138,10 @@ impl Base for Theme {
}
}
- fn palette(&self) -> Option<iced_widget::theme::Palette> {
+ fn seed(&self) -> Option<iced_widget::theme::palette::Seed> {
let colors = self.colors();
- Some(iced_widget::theme::Palette {
+ Some(iced_widget::theme::palette::Seed {
background: colors.surface.color,
text: colors.surface.text,
primary: colors.primary.color,