I have a drop box with option of colors:

[VBA]
cboColorList.AddItem "Aqua"
cboColorList.AddItem "Blue"
cboColorList.AddItem "Bright Green"
cboColorList.AddItem "Dark Green"
cboColorList.AddItem "Indigo"
cboColorList.AddItem "Lavender"
cboColorList.AddItem "Orange"
cboColorList.AddItem "Red"

[/VBA]

I want that every option should be in the color it describes. i.e. Aqua should appear in aqua color. Blue in blue color and so on.

Is it possible?