Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
<!doctype html>
<style>
div {
background-color: light-dark(beige, brown);
color: light-dark(purple, blue);
forced-color-adjust: none;
}
div:first-of-type {
color-scheme: light;
}
div:last-of-type {
color-scheme: dark;
}
</style>
<div>Light</div>
<div>Dark</div>