From 9f915c5ece4ce3432b33c7486c697d551579b7c9 Mon Sep 17 00:00:00 2001 From: SG170 Date: Tue, 26 May 2026 13:10:46 +0530 Subject: [PATCH] fix: replace hardcoded yellow colors with brand purple in BackToTop button --- src/components/Backtotop.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Backtotop.jsx b/src/components/Backtotop.jsx index 05592e7..c16bb67 100644 --- a/src/components/Backtotop.jsx +++ b/src/components/Backtotop.jsx @@ -40,7 +40,7 @@ const BackToTopButton = () => { borderRadius: "50%", border: "none", outline: "none", - backgroundColor: isHovered ? "#eab308" : "#facc15", + backgroundColor: isHovered ? "var(--purple-dark)" : "var(--purple)", color: "#ffffff", cursor: "pointer", boxShadow: isHovered