I have a select list which has options with colors (green good option, red bad option etc..). When i click on my select list i see that my options are in colors which i have defined, but when i selected that value i would like that selected value has his own color, not white by default or blue when changing thru options. Below is my code snippet.
<select id="myBox">
<option style="color:red">
red
</option>
<option style="color:blue">
blue
</option>
<option style="color:green">
green
</option>
</select>
Is it possible customize that "default" (blue and white) colors and how?