I have this code:
<select ng-options="key as value for (key, value) in {{set.values}}" ng-init="set.value" ng-model="item.styles[group][name].value"></select>
I need to set a style to the options like this (generated):
<option style="background: green;">
<option style="background: red;">
How? Is it possible? Or do I need a directive or some other fancy code?