Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | 44x 38x 43x | export const colors = [ "#27856a", "#1e3264", "#8d67ab", "#e8115b", "#8d67ab", "#1e3264", "#b49bc8", "#f037a5", "#e13300", "#477d95", "#8c1932", "#1e3264", "#477d95", "#777777", "#ba5d07", "#503750", "#477d95", "#9cf0e1", "#af2896", "#8d67ab", "#dc148c", "#e61e32", "#608108", "#1e3264", "#148a08", "#af2896", "#eb1e32", "#dc148c", "#477d95", "#e8115b", "#477d95", "#8d67ab", "#af2896", "#477d95", "#8d67ab", "#509bf5", "#ba5d07", "#777777", "#1e3264", "#148a08", "#af2896", "#0d73ec", "#148a08", "#4b917d", "#8c1932", "#f59b23", "#eb1e32", "#1e3264", "#8d67ab", "#dc148c", "#e61e32", "#1e3264", "#ff6437", "#ffc864", "#509bf5", "#2d46b9", "#1e3264", "#0d73ec", "#af2896", "#0d73ec", "#e13300", "#1e3264", "#509bf5", "#b49bc8", "#8c1932", ]; export function getRandomColor(): string { return colors[Math.floor(Math.random() * colors.length)]; } |