Skip to content

Instantly share code, notes, and snippets.

@RuNpiXelruN
Created November 5, 2021 00:06
Show Gist options
  • Save RuNpiXelruN/48d4bd68b48e2a17b625717ee9e4ca2e to your computer and use it in GitHub Desktop.
Save RuNpiXelruN/48d4bd68b48e2a17b625717ee9e4ca2e to your computer and use it in GitHub Desktop.
generate a random colour
randomColor() {
let letters = '0123456789ABCDEF'
let color = '#'
let i = 0
while (i < 6) {
color += letters[Math.floor(Math.random() * 16)]
i++
}
return `${color}44`
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment