style input color code example
Example 1: css color of input
input{
background-color: white; /*The color of your choice here*/
}
Example 2: input type color
<div>
<input type="color" id="head" name="head"
value="#e66465">
<label for="head">Head</label>
</div>