JSFiddle - React, Tailwind, and code Playground

by brigand

CSS

:root {

--base: purple;
  --foo: red;
  --foo: var(--bar, var(--base));

}
body {
  height: 20em;
  background: var(--foo);
}