JavaScript Cambiar color de la entrada de texto
document.getElementById("yourInputID").style.color = 'the color of your choice';
Tartaud
document.getElementById("yourInputID").style.color = 'the color of your choice';
input{
background-color: white; /*The color of your choice here*/
}
/* use important if you don't see any change */