I simply want to change the input text color to another one. Component example is:
<TextField
styles={{
fieldGroup: {
borderRadius: 0,
border: '0px solid transparent',
background: '#F3F2F1',
},
input : {
color: '#FF0000',
}
}}
placeholder="---------Text----------"
/>
I have tried to set the color property on description, errorMessage, field, fieldGroup, icon, prefix, suffix, root, subComponentStyles, and wrapper properties of the IStyle object, but it doesn't work.