From 16feecdd82a27dbf0ccae6c32f4e6844f5b45c5f Mon Sep 17 00:00:00 2001 From: pml68 Date: Thu, 10 Apr 2025 06:32:06 +0200 Subject: feat(material_theme): implement `theme::Base` for theme (`None` for now) --- material_theme/src/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'material_theme/src/lib.rs') diff --git a/material_theme/src/lib.rs b/material_theme/src/lib.rs index a4eea24..ba9d478 100644 --- a/material_theme/src/lib.rs +++ b/material_theme/src/lib.rs @@ -69,6 +69,11 @@ impl Base for Theme { text_color: self.colorscheme.surface.on_surface, } } + + fn palette(&self) -> Option { + // TODO: create a Palette + None + } } #[cfg(feature = "animate")] -- cgit v1.2.3