Here is a way to change the label color:
<TextField className="w-full my-2 " id="outlined-basic" label="距離(英里)" InputLabelProps={{ sx: { color: "red", "&.Mui-focused": { color: "green" } }, }} variant="outlined" />
some advices:
Do not use/copy generated classes in the DOM as they may change!
.MuiFormLabel-root
can be used
.css-1sumxir-MuiFormLabel-root
- Not available
Double ampersand is not valid syntax
& .MuiFormLabel-root
can be used
&& .MuiFormLabel-root
Not available