JSFiddle - React, Tailwind, and code Playground

HTML

<div class="test"></div>

CSS

:root{
    --color: 50, 0, 0;
}

.test {
  height: 500px;
  width: 500px;
  background-color: rgba(var(--color), 1);
}