JSFiddle - React, Tailwind, and code Playground
HTML
<div class="tile"></div>
SCSS
$tile-gold-color: #edc22e;
.tile{
height: 100px;
width: 100px;
background: mix(#333, $tile-gold-color, 95%);
}
<div class="tile"></div>
$tile-gold-color: #edc22e;
.tile{
height: 100px;
width: 100px;
background: mix(#333, $tile-gold-color, 95%);
}