From 2f25bb1e0f284004f4d9fa65674921a17b081f4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Tue, 25 Nov 2025 21:28:31 +0100 Subject: [PATCH] Adjust background colors in `iced` widget --- widget/src/helpers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widget/src/helpers.rs b/widget/src/helpers.rs index a0b8c81c..8450d705 100644 --- a/widget/src/helpers.rs +++ b/widget/src/helpers.rs @@ -1866,7 +1866,7 @@ where .style(move |_| container::Style { background: Some( Linear::new(Radians::PI / 4.0) - .add_stop(0.0, color!(0x2820ff)) + .add_stop(0.0, color!(0x0033ff)) .add_stop(1.0, color!(0x1177ff)) .into() ),