summaryrefslogtreecommitdiffstats
path: root/style/src
diff options
context:
space:
mode:
Diffstat (limited to 'style/src')
-rw-r--r--style/src/theme/palette.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/style/src/theme/palette.rs b/style/src/theme/palette.rs
index cb8bb6e6..81aa9cc7 100644
--- a/style/src/theme/palette.rs
+++ b/style/src/theme/palette.rs
@@ -5,11 +5,11 @@ use palette::{FromColor, Hsl, Mix, RelativeContrast, Srgb};
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Palette {
- background: Color,
- text: Color,
- primary: Color,
- success: Color,
- danger: Color,
+ pub background: Color,
+ pub text: Color,
+ pub primary: Color,
+ pub success: Color,
+ pub danger: Color,
}
impl Palette {