JSFiddle - React, Tailwind, and code Playground

HTML

<select>
    <option class="first"  style="display:none;">HH</option>  
    <option class="green">Hello</option> 
    <option>Magazine</option> 
    
    
</select>

CSS

select {
    color: red;
}

select option {
    color: black;
}