JSFiddle - React, Tailwind, and code Playground
by s_hiroshi
HTML
<span class="key-color bold">test</span>
SCSS
$map-test: ("main": "#0000ff",
"sub": "#ff0000");
.key-color {
color: map.get($map-test, "key");
}
.bold {
font-weight: bold;
}