ClickStart logoHTML5 to the point

Creating a color selector input element

You can use the input element’s ‘color’ type to create an RGB (red, green, blue) color selector.

Screenshot

Code

<input name="myColor" type="color">

Example