JSFiddle - React, Tailwind, and code Playground

by goldorak

HTML

<select>
  <option class="default">Choose..</option>
  <option>option1</option>
  <option>option2</option>
  <option>option3</option>
</select>

CSS

select {
  color: red;
}

option {
  color: blue;
}

option.default {
  color: red;
}