JSFiddle - React, Tailwind, and code Playground

by khamer

HTML

<div class="thing">
  hello
</div>

<div class="thing -two">
  there
</div>

CSS

.thing {
  --start: red;
  --end: blue;
  
  background: linear-gradient(to right, var(--start), var(--end));
}

.-two {
  --end: yellow;
}