JSFiddle - React, Tailwind, and code Playground
HTML
<button>Sign Up</button>
CSS
button {
color:white;
border:0;
font-size:2em;
padding:0.3em 1em;
/*
* The important stuff
*/
background-color:tan;
transition:all linear 0.2s;
}
button:hover {
background-color:wheat;
}