JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<h1>Lipsum</h1>
<p>Lipsum</p>
</div>
SCSS
// Global.scss
$background: red;
$color: null;
// Brand.scss
$background: blue;
div {
background: $background;
color: $color;
}
<div>
<h1>Lipsum</h1>
<p>Lipsum</p>
</div>
// Global.scss
$background: red;
$color: null;
// Brand.scss
$background: blue;
div {
background: $background;
color: $color;
}