I tried the following and solved my problem (removed the yellow color), so I hope this also helps you
I tried css
input:-webkit-autofill { color: #f5f5f5!important; }
I also tried jquery and they both worked
if (navigator.userAgent.toLowerCase().indexOf("chrome") >= 0) { $(window).load(function(){ $('input:-webkit-autofill').each(function(){ var text = $(this).val(); var name = $(this).attr('name'); $(this).after(this.outerHTML).remove(); $('input[name=' + name + ']').val(text); }); }); }
source share