html make all input color code example
Example 1: input backgound color
<input style="background-color: gold;" type="text" value="">
Example 2: style input by type
/* Style input based on type */
input[type=text]
{
}
<input style="background-color: gold;" type="text" value="">
/* Style input based on type */
input[type=text]
{
}