Light/Dark mode follow system color scheme

CSS

4/26/2022, 1:44:15 PM

by Leo Voon

In your CSS, add

:root {
 color-scheme: light;
}

code above choose operating system light color scheme to be rendered.

:root {
 color-scheme: dark;
}

this CSS feature is supported for all modern browser except IE.

https://developer.mozilla.org/en-US/docs/Web/CSS/color-scheme