how to change list item text color in react

JavaScript
<ListItemText
          primary={
            <Typography variant="h6" style={{ color: "white" }}>
              User
            </Typography>
          }
          secondary={
            <Typography style={{ color: "white" }}>hello</Typography>
          }
        />
Source

Also in JavaScript: