- 緑黄色 りょくおうしょく #dccb18 -
<!-- HTML -->
<div class="tx-暗黒色_あんこくしょく bg-緑黄色_りょくおうしょく">
<span>背景色:緑黄色 りょくおうしょく</span><br>
<span>文字色:暗黒色 あんこくしょく</span>
</div>
/* CSS */
/* カラーコードの日本語定義 */
:root {
--緑黄色_りょくおうしょく :#dccb18;
--暗黒色_あんこくしょく :#16160e;
}
/* 背景色のクラス定義 */
.bg-緑黄色_りょくおうしょく {
background: var(--緑黄色_りょくおうしょく);
}
/* 文字色のクラス定義 */
.tx-暗黒色_あんこくしょく {
color: var(--暗黒色_あんこくしょく);
}