JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr>
        <td class="red"> </td>
        <td>asd</td>
        </tr>
        <tr>
        <td class="yellow"></td>
        <td class="orange"></td>
        <td class="blue"></td>
    <tr>
</table>

CSS

td{    
    padding:5px;

}
.red{
    background-color:#F15E66;
}
.yellow{
    background-color:#FFDB64;
}
.orange{
    background-color:#F58326;
}
.blue{
    background-color:#85B1DE;
}