JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<td>Two Color Background</td>
</tr>
</table>
CSS
td {
height:100px;
background: -webkit-linear-gradient(33deg, lightblue 50%, navy 51%);
background: linear-gradient(33deg, lightblue 50%, navy 51%);
color:white;
}