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);
}
<div class="test"></div>
:root{
--color: 50, 0, 0;
}
.test {
height: 500px;
width: 500px;
background-color: rgba(var(--color), 1);
}