JSFiddle - React, Tailwind, and code Playground
HTML
<div></div>
CSS
div {
width: 100px;
height: 100px;
background: rgb(192,255,128);
}
JavaScript
var div = document.querySelector('div');
alert(getComputedStyle(div).backgroundColor);