Skip to content

Instantly share code, notes, and snippets.

@z-------------
Created March 27, 2014 00:07
Show Gist options
  • Save z-------------/9796804 to your computer and use it in GitHub Desktop.
Save z-------------/9796804 to your computer and use it in GitHub Desktop.
Gives the <body> a random background color
var e=Math.random()*255,
t=Math.random()*255,
n=Math.random()*255;
document.body.style.backgroundColor="rgb("+Math.round(e)+","+Math.round(t)+","+Math.round(n)+")"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment