The different options of the html select form field show the correct 'colors' of my options as the background-color.
But when one option is selected and thus the select element is shown 'collapsed' it shows a default white background.
What is a clean way to update the background of the select box to the one of the option ?
<select>
<option style="background-color: #CDBA88">RAL:1000</option>
<option style="background-color: #D0B084">RAL:1001</option>
<option style="background-color: #D2AA6D">RAL:1002</option>
<option style="background-color: #F9A800">RAL:1003</option>
<option style="background-color: #E49E00">RAL:1004</option>
</select>