JSFiddle - React, Tailwind, and code Playground

HTML

<script>
function changeColor() {
	document.getElementById('text').style.color = 'red';
}
</script>

<p id="text">some text</p>
<button type="button" onclick="changeColor()">red</button>