summaryrefslogtreecommitdiffstats
path: root/widget/src/progress_bar.rs
diff options
context:
space:
mode:
Diffstat (limited to 'widget/src/progress_bar.rs')
-rw-r--r--widget/src/progress_bar.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/widget/src/progress_bar.rs b/widget/src/progress_bar.rs
index 40ee5e02..889c5558 100644
--- a/widget/src/progress_bar.rs
+++ b/widget/src/progress_bar.rs
@@ -185,7 +185,10 @@ impl Style for Theme {
pub fn primary(theme: &Theme) -> Appearance {
let palette = theme.extended_palette();
- styled(palette.background.strong.color, palette.primary.base.color)
+ styled(
+ palette.background.strong.color,
+ palette.primary.strong.color,
+ )
}
/// The secondary style of a [`ProgressBar`].