Theme Variables
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>
<style>
:root{
--bg:#111827;
--text:#f9fafb;
}
.theme{
background:var(--bg);
color:var(--text);
padding:12px;
}
</style>
<div class="theme">Dark theme example</div>