Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<meta charset="utf-8">
<title>light-dark() computes to the actual value, like system colors</title>
<link rel="match" href="/css/reference/ref-filled-green-100px-square-only.html">
<style>
.square {
width: 100px;
height: 100px;
color-scheme: dark;
background-color: currentColor;
}
.container {
color-scheme: light;
color: light-dark(green, red);
}
</style>
<p>Test passes if there is a filled green square.</p>
<div class="container">
<div class="square"></div>
</div>