Random Hexadecimal Color Generator (🔗)
Playing with how many possible hexadecimal colors are available -> 16^6
- Make Function that randomly produces 6 numbers (range 1 - 16)
- Convert digits to Hex (range 0 - F)
- Set background color to generated number
- Update text fields to present hex value
- Function to detect light/dark color
- Update text color to be opposite of background brightness
Dec-to-Hex conversion using .toString(): 30 Seconds of Code
RGB-to-HSL maths: Colorspace Conversions