chang text color in js code example
Example 1: javascript change color of text input
document.getElementById("yourInputID").style.color = 'the color of your choice';
Example 2: js element text color
element.style.color = '#f0f';
document.getElementById("yourInputID").style.color = 'the color of your choice';
element.style.color = '#f0f';