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"
/>
xxxxxxxxxx
textarea:focus, input:focus {
color: #ff0000;
}
input, select, textarea{
color: #000;
}
xxxxxxxxxx
input{
background-color: white; /*The color of your choice here*/
}
/* use important if you don't see any change */