pixel noun 1 A minute area of illumination on a display screen.wright noun 1 A builder or creator of something.
© 2024 — Will Wright Hosted on Github Pages
Here is a quick and short way to generate random #Hex colours using Javascript:
'#'+('00000'+(Math.random()*(1<<24)|0).toString(16)).slice(-6); // To use a string (such as user_id) for a unique colour: function stringToColorCode(str) { return (str in color_codes) ? color_codes[str] : (color_codes[str] = '#'+('00000'+(Math.random()*(1<<24)|0).toString(16)).slice(-6)); }
Have a question about this post, a project or anything else? Let's have a conversation on Twitter.