JSFiddle - React, Tailwind, and code Playground

HTML

<div class="target">This is the target</div>

CSS

.target {
    color: red;
}

JavaScript

var element = document.querySelector('.target');
element.style.color = 'blue';