Random Color Strings
R = Math.random
b = document.body
b.style = 'background: black; font-family: sans-serif; text-transform: uppercase; color: white;'
setInterval(_ => {
if (R()<.9) {
s = ''
for(i=0;i<R() * 30 + 4;i++) s+=(~~(R() * 0xff)).toString(36)
.replace(R() < .9 ? /[0-9]/g : '', '')
b.innerHTML += `
<n style="color:hsl(${R()*360}, 30%, 50%)">${s}</n> `+(R()<.1?'<br>':'');
}
}, 100)
Make some random strings and give them a random color… a friend of mine showed a work in progress forked codepen – so I created a golfed version/variation…