I have recently faced this issue and tried various solution. Finally following solution work :
<TextField
sx={{
// Fix for autofill color
'& input:-webkit-autofill': {
transition:
'background-color 600000s 0s, color 600000s 0s'
}
}}
/>
I am using MUI textfield here. Hope this is usefull.