update 2026-07-09 12:26

This commit is contained in:
nix
2026-07-09 12:26:04 +02:00
parent 4ede7b4aea
commit ddafdbd7f3
119 changed files with 86 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
var couleurs = [
"red",
"blue",
"gray",
"black",
"purple",
"pink",
"green"
];
if (true == true) {
var random = Math.floor(Math.random() * couleurs.length);
document.getElementById("rainbow").style.color = couleurs[random];
}