diff --git a/components/AnimatedBackground.tsx b/components/AnimatedBackground.tsx index c192a2c..2091274 100644 --- a/components/AnimatedBackground.tsx +++ b/components/AnimatedBackground.tsx @@ -20,7 +20,7 @@ const AnimatedBackground: React.FC = () => { const update = () => { const from = getRandomColor() - // Calculate cojugate color based on the golden ratio + // Calculate conjugate color based on the golden ratio const to: Color = [Math.floor(from[0] + (255 * GoldenRatio * 2)) % 255, from[1], from[2]] setStart(from)