visbug-lib
Version:
<p align="center"> <img src="./assets/visbug.png" width="300" height="300" alt="visbug"> <br> <a href="https://www.npmjs.org/package/visbug"><img src="https://img.shields.io/npm/v/visbug.svg?style=flat" alt="npm latest version number"></a> <a href
32 lines (27 loc) • 832 B
CSS
:host {
--theme-bg: hsl(0 0% 100%);
--theme-bd: hsl(0 0% 100% / .8);
--theme-bd-2: hsl(0 0% 100% / .9);
--theme-color: hotpink;
--theme-blue: hsl(188 90% 45%);
--theme-purple: hsl(267 100% 58%);
--theme-text_color: hsl(0 0% 10%);
--theme-icon_color: hsl(0 0% 20%);
--theme-icon_hover-bg: hsl(0 0% 95%);
--theme-icon_active-bg: hsl(0 0% 90%);
--layer-top: 2147483647;
--layer-1: 2147483646;
--layer-2: 2147483645;
--layer-3: 2147483644;
--layer-4: 2147483643;
--layer-5: 2147483642;
@media (prefers-color-scheme: dark) {
--theme-bg: hsl(0 0% 10%);
--theme-bd: hsl(0 0% 10% / .8);
--theme-bd-2: hsl(0 0% 10% / .9);
--theme-text_color: hsl(0 0% 80%);
--theme-icon_color: hsl(0 0% 60%);
--theme-icon_hover-bg: hsl(0 0% 15%);
--theme-icon_active-bg: hsl(0 0% 20%);
}
}