xxxxxxxxxx
input{
background-color: white; /*The color of your choice here*/
}
/* use important if you don't see any change */
xxxxxxxxxx
document.getElementById("yourInputID").style.color = 'the color of your choice';
xxxxxxxxxx
//Css or inline
<style>
.searchBox input{
color: rgb(73, 209, 152);
}
</style>
// HTml text
<div class="searchBox">
<input
type="text"
name="searchBox"
id="search"
placeholder="Enter Search Keywords"
/>