Comment modifier la couleur du texte de l'élément de liste dans la réaction

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