This commit is contained in:
cupcakearmy 2020-07-23 20:07:32 +02:00
parent 328d7541c6
commit a3c8c79de9
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
1 changed files with 1 additions and 1 deletions

View File

@ -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)