diff --git a/components/home/magicui/interactive-grid-pattern.tsx b/components/home/magicui/interactive-grid-pattern.tsx index 22c420e..3cbdbfa 100644 --- a/components/home/magicui/interactive-grid-pattern.tsx +++ b/components/home/magicui/interactive-grid-pattern.tsx @@ -40,7 +40,7 @@ export function InteractiveGridPattern({ width={width * horizontal} height={height * vertical} className={cn( - "absolute inset-0 h-full w-full border border-[#1DA2FF]/30", + "absolute inset-0 h-full w-full border border-[#F3BA2F]/30", className )} {...props} @@ -56,9 +56,9 @@ export function InteractiveGridPattern({ width={width} height={height} className={cn( - "stroke-[#1DA2FF]/30 transition-all duration-100 ease-in-out [&:not(:hover)]:duration-1000", + "stroke-[#F3BA2F]/30 transition-all duration-100 ease-in-out [&:not(:hover)]:duration-1000", hoveredSquare === index - ? "fill-[#1DA2FF]/30" + ? "fill-[#F3BA2F]/30" : "fill-transparent", squaresClassName )}