parent
045487d5f7
commit
7beb050aca
BIN
website/assets/binkies/immjs.gif
Normal file
BIN
website/assets/binkies/immjs.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 KiB |
|
@ -24,6 +24,7 @@ const binky = [
|
||||||
["https://yumeo.nekoweb.org", "yumeo.gif"],
|
["https://yumeo.nekoweb.org", "yumeo.gif"],
|
||||||
["https://bee.nekoweb.org/", "bee.png"],
|
["https://bee.nekoweb.org/", "bee.png"],
|
||||||
["https://ultrakill.nekoweb.org/", "ultrakill.png"],
|
["https://ultrakill.nekoweb.org/", "ultrakill.png"],
|
||||||
|
["https://immjs.dev", "immjs.gif"],
|
||||||
|
|
||||||
["insane.gif", "piracy.gif", "dsb.gif", "universe.gif"],
|
["insane.gif", "piracy.gif", "dsb.gif", "universe.gif"],
|
||||||
];
|
];
|
||||||
|
|
|
@ -31,7 +31,9 @@ class Particle {
|
||||||
this.id = Math.random();
|
this.id = Math.random();
|
||||||
this.angle = 2 * Math.PI * this.id;
|
this.angle = 2 * Math.PI * this.id;
|
||||||
// trans flag colors
|
// trans flag colors
|
||||||
this.color = ["#5BCEFA", "#F5A9B8", "#FFFFFF"][Math.floor(Math.random() * 3)]
|
this.color = ["#5BCEFA", "#F5A9B8", "#FFFFFF"][
|
||||||
|
Math.floor(Math.random() * 3)
|
||||||
|
];
|
||||||
// random pastel color with HSL
|
// random pastel color with HSL
|
||||||
/*this.color =
|
/*this.color =
|
||||||
"hsl(" +
|
"hsl(" +
|
||||||
|
|
Loading…
Reference in a new issue