diff --git a/index.html b/index.html index 5ee61ab..85e42ca 100644 --- a/index.html +++ b/index.html @@ -12,20 +12,56 @@ + + + void; }) { const [name, setName] = useState(initial?.name ?? ""); - const [hue, setHue] = useState(initial?.hue ?? HUES[0]!); + const [hue, setHue] = useState(initial?.hue ?? CUSTOM_HUES[0]!); const valid = name.trim().length > 0 && name.trim().length <= 40; return ( @@ -77,7 +83,7 @@ export function GameForm({

Lane colour

- {HUES.map((h) => ( + {CUSTOM_HUES.map((h) => (