take color from color input code example
Example 1: css color of input
input{
background-color: white; /*The color of your choice here*/
}
Example 2: input type color
<input type="color" value="#f6f82" id="colorPicker">
input{
background-color: white; /*The color of your choice here*/
}
<input type="color" value="#f6f82" id="colorPicker">