Remove forgotten }

This commit is contained in:
Ninjdai 2023-10-01 18:26:44 +02:00
parent fd889cd823
commit 0c94666f03

View File

@ -27,7 +27,7 @@ async function generateRandomPalette() {
const saturation = Math.random() * 40 + 50; // Random saturation between 50% and 90%
const brightness = Math.random() * 40 + 50; // Random brightness between 50% and 90%
const color = hslToHex(hue + i * (360 / numColors) , saturation} , brightness);
const color = hslToHex(hue + i * (360 / numColors) , saturation , brightness);
palette.push(color);
}