JSFiddle - React, Tailwind, and code Playground

HTML

<div id="elem"></div>

CSS

#elem{
        height: 100px;
        width: 200px;
        background-color: green;
}
#elem:hover{
        background-color: blue !important;
}

JavaScript

document.getElementById('elem').style.backgroundColor = "lightblue";