[jQuery] input color - default color

[jQuery] input color - default color


I have inputs with validationin in jquery. If data are wrong I make
red background color in input:
$('#first_input').css('background-color', 'red');
After click reset I would like to see default input color so I make:
$('#first_input').css('background-color', 'white');
But inputs with background-cloror: white looks different than default
inputs - why ?