Theme Variables

Variables help create reusable theme systems.

Preview

Code

<style>
:root{
--bg:#111827;
--text:#f9fafb;
}

.theme{
background:var(--bg);
color:var(--text);
padding:12px;
}
</style>

<div class="theme">Dark theme example</div>

More CSS Variables Examples (8)