JSFiddle - React, Tailwind, and code Playground

HTML

<p class="green">Test</p>
<style type="text/css">
    p.green {
        color: green;
        -webkit-transition: color 1s;
    }
    p.green:hover {
        color: yellow;
    }
</style>

CSS

body {
    color: red;
}