JSFiddle - React, Tailwind, and code Playground
HTML
<div class="a">#F9F9F9</div>
<div class="b">#F9F9FA</div>
CSS
div {
width: 200px;
height: 200px;
margin: 10px;
display: inline-flex;
justify-content: center;
align-items: center;
}
.a {
background-color: #f9f9f9;
}
.b {
background-color: #f9f9fa;
}