diff options
Diffstat (limited to 'widget/src/progress_bar.rs')
-rw-r--r-- | widget/src/progress_bar.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/widget/src/progress_bar.rs b/widget/src/progress_bar.rs index 554e8a44..a9b4eb65 100644 --- a/widget/src/progress_bar.rs +++ b/widget/src/progress_bar.rs @@ -288,10 +288,7 @@ impl Catalog for Theme { pub fn primary(theme: &Theme) -> Style { let palette = theme.extended_palette(); - styled( - palette.background.strong.color, - palette.primary.strong.color, - ) + styled(palette.background.strong.color, palette.primary.base.color) } /// The secondary style of a [`ProgressBar`]. |