CSS 日本語で定義する和色カラーコード

 - 香色 こういろ #efcd9a - 

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

/* CSS */
/* カラーコードの日本語定義 */
:root {
 --香色_こういろ :#efcd9a;
 --暗黒色_あんこくしょく :#16160e;
}

/* 背景色のクラス定義 */
.bg-香色_こういろ {
 background: var(--香色_こういろ);
}

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