From 85f6849242ae3fc6f869c3407ec6d68ad277264c Mon Sep 17 00:00:00 2001 From: edouard Date: Wed, 5 Apr 2023 12:40:46 +0200 Subject: [PATCH 1/2] fix spend step foreground color --- gui/src/app/view/spend/step.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/src/app/view/spend/step.rs b/gui/src/app/view/spend/step.rs index 3adc5d85..c32d821e 100644 --- a/gui/src/app/view/spend/step.rs +++ b/gui/src/app/view/spend/step.rs @@ -78,6 +78,7 @@ pub fn choose_recipients_view<'a>( button::primary(None, "Next").width(Length::Units(100)) }), ) + .style(theme::Container::Foreground) .padding(20), ), ) @@ -184,6 +185,7 @@ pub fn choose_coins_view<'a>( button::primary(None, "Next").width(Length::Units(100)) }), ) + .style(theme::Container::Foreground) .padding(20), ), ) From 291895e5ff7a64541bfe5a09ad3d57f1ce7c53f6 Mon Sep 17 00:00:00 2001 From: edouard Date: Wed, 5 Apr 2023 12:43:44 +0200 Subject: [PATCH 2/2] fix progress bar background --- gui/ui/src/theme.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/ui/src/theme.rs b/gui/ui/src/theme.rs index c58f084e..27cead64 100644 --- a/gui/ui/src/theme.rs +++ b/gui/ui/src/theme.rs @@ -808,7 +808,7 @@ impl progress_bar::StyleSheet for Theme { type Style = ProgressBar; fn appearance(&self, _style: &Self::Style) -> progress_bar::Appearance { progress_bar::Appearance { - background: iced::Color::TRANSPARENT.into(), + background: color::GREY.into(), bar: color::GREEN.into(), border_radius: 10.0, }