Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-color/light-dark-inheritance.html - WPT Dashboard Interop Dashboard
<!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>