diff options
Diffstat (limited to '')
| -rw-r--r-- | crates/material_theme/src/dialog.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/material_theme/src/dialog.rs b/crates/material_theme/src/dialog.rs index a022548..c839948 100644 --- a/crates/material_theme/src/dialog.rs +++ b/crates/material_theme/src/dialog.rs @@ -25,7 +25,7 @@ impl Catalog for Theme { } pub fn default_container(theme: &Theme) -> container::Style { - let colors = theme.colorscheme.surface; + let colors = theme.colors().surface; container::Style { background: Some(Background::Color(colors.surface_container.high)), text_color: Some(colors.on_surface_variant), @@ -36,6 +36,6 @@ pub fn default_container(theme: &Theme) -> container::Style { pub fn default(theme: &Theme) -> Style { Style { - backdrop_color: theme.colorscheme.scrim, + backdrop_color: theme.colors().scrim, } } |
