How can I change the font color of a disabled MUI TextField to black for better visibility?
See below for the code snippet:
<TextField
fullWidth
variant="standard"
size="small"
id="id"
name="name"
type="text"
InputProps={{disableUnderline: true}}
disabled={true}
/>
I have successfully removed the underline from the standard text Field, but now I am looking to make the text color black when it is disabled.