Skip to content

Instantly share code, notes, and snippets.

@nahakiole
Created April 3, 2015 05:50
Show Gist options
  • Save nahakiole/d44a9927db6f7c1f253b to your computer and use it in GitHub Desktop.
Save nahakiole/d44a9927db6f7c1f253b to your computer and use it in GitHub Desktop.
A random color generator snippet
!function(window){
var subColour = function(){ return Math.floor(Math.random()*255).toString(16); };
window.Beautiful = function(){
return '#'+subColour()+subColour()+subColour();
}
}(window)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment