Provided valid HSV values, calculates and stitches together a string of that HSV color's corresponding hex code.
Sourced from https://stackoverflow.com/a/44134328.
Hue in degrees, must be in a range of [0, 360]
Saturation percentage, must be in a range of [0, 1]
Ligthness percentage, must be in a range of [0, 1]
a string of the corresponding color hex code with a "#" prefix
Provided valid HSV values, calculates and stitches together a string of that HSV color's corresponding hex code.
Sourced from https://stackoverflow.com/a/44134328.