JSFiddle - React, Tailwind, and code Playground

HTML

<button type="button" class="myBtn">Highlight me when Clicked</button>

CSS

.myBtn {
    background-color: #fff;
    cursor: pointer;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
}
.myBtn:active {
    background-color: #dd4814;
   
}