JSFiddle - React, Tailwind, and code Playground

by mmansion

HTML

<div class="shape blue trans"></div>

CSS

.shape {
    width: 100px;
    height: 100px;
}

.red {
   background: red;   
}

.blue {
   background: blue;
}

.trans {
   opacity: .3;
}