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