After selecting option in react-select if open select again background change like shown IMG!!
<Select className='form-control p-0'
options={countryArray}
value={
countryArray.length > 0 && countryArray.find(op => {
return op.label === values.country.label
})
ref={refCountry}
autoFocus={true}
name='countryList'
onChange={e => {
setFieldValue('country', e)
setFieldValue('countryId', e.countryId)
dispatch(stateApi(e.countryId))
}}
/>