diff --git a/website/assets/binkies/bee.png b/website/assets/binkies/bee.png new file mode 100644 index 0000000..18e6a3e Binary files /dev/null and b/website/assets/binkies/bee.png differ diff --git a/website/scripts/binkies.ts b/website/scripts/binkies.ts index 920b181..a501a68 100644 --- a/website/scripts/binkies.ts +++ b/website/scripts/binkies.ts @@ -22,6 +22,7 @@ const binky = [ ["https://windigone.nekoweb.org", "windigone.gif"], ["https://eye.nekoweb.org", "eye.gif"], ["https://yumeo.nekoweb.org", "yumeo.gif"], + ["https://bee.nekoweb.org/", "bee.png"], ["insane.gif", "piracy.gif", "dsb.gif", "universe.gif"], ]; diff --git a/website/scripts/particles.ts b/website/scripts/particles.ts index cebbba7..0dcf6a5 100644 --- a/website/scripts/particles.ts +++ b/website/scripts/particles.ts @@ -30,14 +30,17 @@ class Particle { this.y = y; this.id = Math.random(); this.angle = 2 * Math.PI * this.id; - this.color = + // trans flag colors + this.color = ["#5BCEFA", "#F5A9B8", "#FFFFFF"][Math.floor(Math.random() * 3)] + // random pastel color with HSL + /*this.color = "hsl(" + 360 * Math.random() + "," + (25 + 70 * Math.random()) + "%," + (85 + 10 * Math.random()) + - "%)"; + "%)";*/ this.style = Math.random() < 0.5 ? "-" : Math.random() > 0.5 ? "+" : "*"; }