JSFiddle - React, Tailwind, and code Playground

by Imabot

HTML

<p class="red">Red</p>
<p class="green">Green</p>
<p class="blue">Blue</p>
<p class="yellow">yellow</p>
<p class="pink">Pink</p>

CSS

.red { color: rgb(255, 0, 0); }
.green  { color: rgb(0, 255, 0); }
.blue  { color: rgb(0, 0, 255); }
.yellow { color: rgb(255, 255, 0); }
.pink  { color: rgb(255, 0, 255); }