From dd3b8b1f3d55c5f82589e318357ea5f6ca0a7bab Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Wed, 30 Apr 2025 10:16:35 +0800 Subject: [PATCH] theme: Export `colors` attribute. (#822) --- crates/ui/src/theme.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ui/src/theme.rs b/crates/ui/src/theme.rs index 57a053b2..b7fb028d 100644 --- a/crates/ui/src/theme.rs +++ b/crates/ui/src/theme.rs @@ -431,7 +431,7 @@ impl ThemeColor { #[derive(Debug, Clone)] pub struct Theme { - colors: ThemeColor, + pub colors: ThemeColor, pub mode: ThemeMode, pub font_family: SharedString,