<!-- HTML -->
<div class="tx-暗黒色_あんこくしょく bg-纁_そひ">
  <span>背景色:纁 そひ</span><br>
  <span>文字色:暗黒色 あんこくしょく</span>
</div>

/* CSS */
/* カラーコードの日本語定義 */
:root {
 --纁_そひ :#e0815e;
 --暗黒色_あんこくしょく :#16160e;
}

/* 背景色のクラス定義 */
.bg-纁_そひ {
 background: var(--纁_そひ);
}

/* 文字色のクラス定義 */
.tx-暗黒色_あんこくしょく {
 color: var(--暗黒色_あんこくしょく);
}