change color listitem primary secundary material ui code example
Example: how to change list item text color in react
<ListItemText
primary={
<Typography variant="h6" style={{ color: "white" }}>
User
</Typography>
}
secondary={
<Typography style={{ color: "white" }}>hello</Typography>
}
/>