JSFiddle - React, Tailwind, and code Playground

HTML

<ul>
    <li>
        <a href="http://google.com.pe" target="_blank">Google</a>
    </li>
</ul>

CSS

ul > li {
    color: red;
}
ul > li > a {
    color: black;
    text-decoration: none;
}