JSFiddle - React, Tailwind, and code Playground

by niik

HTML

<div>
  foo
</div>

<div class="secondary">
  bar
</div>

CSS

:root {
  --primary-color: red;
}

* {
  color: var(--primary-color);
}

.secondary {
  --primary-color: green;
}