JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text" id="f">

CSS

.a {
  background: tomato;
}

JavaScript

setInterval(()=>f.value=1+ +f.value||0, 1000)

f.addEventListener('change', function(){
	this.classList.toggle('a')
})