Skip to content

Instantly share code, notes, and snippets.

@johnbabu021
Forked from stefanocudini/randomcolor.js
Created May 22, 2021 12:55
Show Gist options
  • Save johnbabu021/54d52d0ed74a7e10a0658a3a9c40977f to your computer and use it in GitHub Desktop.
Save johnbabu021/54d52d0ed74a7e10a0658a3a9c40977f to your computer and use it in GitHub Desktop.
html random color
function randcolor() {
function c() {
return Math.floor(Math.random()*220+36).toString(16)
}
return "#"+c()+c()+c();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment