Cara Mengubah Daftar Item Warna Teks di React

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