JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<h1>Lipsum</h1>
<p>Lipsum</p>
</div>
CSS
/* Global CSS */
:root {
--background: red;
--color: black;
}
/* Brand CSS */
:root {
--background: blue;
}
div {
background: var(--background);
}