JSFiddle - React, Tailwind, and code Playground

by 규연 황

HTML

<div class="component">
  <div class="text">text</div>
</div>

CSS

.component .text {
  color: var(--text-color, black);
}

/* In the larger application’s style: */
.component {
  font-size: 30px;
  --text-color: blue;
}