summaryrefslogtreecommitdiffstats
path: root/style
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2022-07-10 18:40:11 +0200
committerLibravatar GitHub <noreply@github.com>2022-07-10 18:40:11 +0200
commitd1505a98d967f36679f8b7d98347ba03a4c2af1c (patch)
treeb0139b1e87a7f98536c3d83cac1b99eafd0b28aa /style
parent9051dd6977d045f991092e247e6bd9da40d2e793 (diff)
parent3a26a8ccd4c406b4b3f0d5c6d2863d0613798f01 (diff)
downloadiced-d1505a98d967f36679f8b7d98347ba03a4c2af1c.tar.gz
iced-d1505a98d967f36679f8b7d98347ba03a4c2af1c.tar.bz2
iced-d1505a98d967f36679f8b7d98347ba03a4c2af1c.zip
Merge pull request #1358 from ThatsNoMoon/fix-arc_to
Fix `arc_to`
Diffstat (limited to '')
-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 {