Skip to content

Instantly share code, notes, and snippets.

View ArturKy's full-sized avatar

Artur ArturKy

View GitHub Profile
@timdorr
timdorr / disco.js
Last active May 3, 2018 22:08
Disco mode!
function disco() {
var elements = document.getElementsByTagName('*');
for (var i = elements.length - 1; i >= 0; i--) {
var r = Math.floor(Math.random()*256);
var g = Math.floor(Math.random()*256);
var b = Math.floor(Math.random()*256);
elements[i].style.color = '#'+r.toString(16)+g.toString(16)+b.toString(16);
var r = Math.floor(Math.random()*256);