JSFiddle - React, Tailwind, and code Playground
HTML
<span class="level1">
<ul>
<li class="level2">First bullet</li>
<li><span class="level3">Second bullet</span></li>
<li>Third bullet</li>
</ul>
</span>
CSS
.level1 {
color:red;
}
.level2{
color:blue;
}
.level3 {
color:green;
}