What about this:
select{
width: 150px;
height: 30px;
padding: 5px;
color: green;
}
select option { color: black; }
select option:first-child{
color: green;
}
_x000D_
<select>
<option>one</option>
<option>two</option>
</select>
_x000D_