JSFiddle - React, Tailwind, and code Playground
HTML
<p class='primary'>
Hello
</p>
<span>
Cool
</span>
CSS
@import url('https://fonts.googleapis.com/css?family=Indie Flower');
body {
font-family: sans-serif;
}
.primary {
--rgb: 50, 50, 50;
}
.primary {
background-color: rgba(var(--rgb), 0.5);
font-family: Indie Flower, serif;
}