JSFiddle - React, Tailwind, and code Playground

by Walter Rumsby

HTML

<DOCTYPE html>
<html lang="en">
<head>
<style>
body {
  -webkit-print-color-adjust: exact !important;
}

div {
  display: inline-block;
  padding: 2px;
}
.orange {
  background-color: orange;
  color: white;
}
</style>
</head>
<body>
<div class="orange">
  <span>Orange</span>
</div>
</body>
</html>
</DOCTYPE>