Good morning, I have a <input type='color' />
and it only comes in black, I want it to come in color white .
Good morning, I have a <input type='color' />
and it only comes in black, I want it to come in color white .
Just set the value
attribute of your field:
<input type='color' value='#FFFFFF' />
The value you enter in the attribute will be the color initially displayed.