I need change text color of item on select2, I try this:
{!! FORM::label('IdOrigenRechazo', 'Origen de rechazo:') !!}
{!! FORM::select('IdOrigenRechazo',$origen->pluck('Descripcion','Id'),null,[
'class'=>'select2_single form-control select-input',
'placeholder'=>''
]) !!}
But, I don't know, how to change text color of item.
Note: Don't need background color.
Pls.