I want to add different CSS to every option of ui-select as given in the image so that every option is shown in different text-color
Here is the Plunk with the code: Plunk
I also tried with giving different li as shown here
<ui-select-choices repeat="item in (itemArray) track by item.id">
<li style="color:green;">Pending</li>
<li style="color:red;">Rejected</li>
<li style="color:blue;">Approved</li>
</ui-select-choices>
but when I select the item the css won't persist.
