JSFiddle - React, Tailwind, and code Playground

by mgiuffrida

HTML

<div>my div</div>

CSS

body {
  --my-color: inherit;
  --my-bg-color: yellow;
}

div {
  color: var(--my-color, red); /* Resolves to red. */
  background-color: var(--my-bg-color, blue); /* Resolves to yellow */
}