JSFiddle - React, Tailwind, and code Playground

by Daniel Tan

HTML

<p>I'm not dark</p>
<div class="dark">
    <div>
        <p>I'm dark</p>
        <div class="light">
            <div>
                <p>I should be light</p>
            </div>
        </div>
    </div>
</div>

CSS

.dark p {
    color: #000;
}
body, .light p {
    color: #ccc;
}