JSFiddle - React, Tailwind, and code Playground
HTML
<ul>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ul>
CSS
li:nth-child(2n + 1) {
color: firebrick;
}
<ul>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ul>
li:nth-child(2n + 1) {
color: firebrick;
}