From b61151b4a75d4311baf133b6dcf388b69c77297f Mon Sep 17 00:00:00 2001 From: "Ehsan.Asadi" Date: Fri, 26 Dec 2025 18:48:18 +0330 Subject: [PATCH] fix: Update remaining section backgrounds to darker blue --- src/presentation/web/pages/landing/index.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/presentation/web/pages/landing/index.py b/src/presentation/web/pages/landing/index.py index b394c20..ed501a3 100644 --- a/src/presentation/web/pages/landing/index.py +++ b/src/presentation/web/pages/landing/index.py @@ -680,7 +680,7 @@ def about_section() -> rx.Component: margin="0 auto", padding="140px 8%", ), - background="linear-gradient(180deg, rgba(15, 15, 35, 0.95) 0%, rgba(5, 5, 16, 1) 100%)", + background="linear-gradient(180deg, rgba(10, 18, 35, 0.98) 0%, rgba(5, 10, 20, 1) 100%)", width="100%", ) @@ -855,7 +855,7 @@ def pricing_section() -> rx.Component: margin="0 auto", padding="160px 8%", ), - background="linear-gradient(180deg, rgba(15, 15, 35, 0.95) 0%, rgba(5, 5, 16, 1) 100%)", + background="linear-gradient(180deg, rgba(10, 18, 35, 0.98) 0%, rgba(5, 10, 20, 1) 100%)", width="100%", id="pricing", ) @@ -1026,7 +1026,7 @@ def testimonials_section() -> rx.Component: margin="0 auto", padding="160px 8%", ), - background="linear-gradient(180deg, rgba(15, 15, 35, 0.95) 0%, rgba(5, 5, 16, 1) 100%)", + background="linear-gradient(180deg, rgba(10, 18, 35, 0.98) 0%, rgba(5, 10, 20, 1) 100%)", width="100%", id="testimonials", )