From 9637459278f409549f30e042bfa5dd396b2735fc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 31 May 2026 06:54:43 +0000 Subject: [PATCH] fix(landing): update AnimatedGradientText default colors to brand blue Co-authored-by: andrew-bierman <94939237+andrew-bierman@users.noreply.github.com> --- apps/landing/components/ui/animated-gradient-text.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/landing/components/ui/animated-gradient-text.tsx b/apps/landing/components/ui/animated-gradient-text.tsx index 8a6ca6cef7..f8663f6bcb 100644 --- a/apps/landing/components/ui/animated-gradient-text.tsx +++ b/apps/landing/components/ui/animated-gradient-text.tsx @@ -15,7 +15,7 @@ interface AnimatedGradientTextProps { export default function AnimatedGradientText({ children, className, - colors = ['#0F766E', '#14B8A6', '#F97316', '#FB923C'], + colors = ['#0070E9', '#007BFE', '#0385FF', '#3B82F6'], duration = 8, animate = true, }: AnimatedGradientTextProps) {