Skip to content

Instantly share code, notes, and snippets.

@ozio
Created July 2, 2015 21:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ozio/babf7aa38f600bae7e52 to your computer and use it in GitHub Desktop.
Save ozio/babf7aa38f600bae7e52 to your computer and use it in GitHub Desktop.
Как сделать любой сайт ярче
var els = document.querySelectorAll('*');
for (var i = 0, l = els.length; i < l; i++) {
var color = [
parseInt(Math.random() * 255),
parseInt(Math.random() * 255),
parseInt(Math.random() * 255)
];
els[i].style.backgroundColor = 'rgb(' + color.join(',') + ')';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment