Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<link rel="match" href="registered-property-computation-color-001-ref.html">
<style>
@property --x {
inherits: true;
initial-value: black;
syntax: "<color>";
}
div {
color-scheme: dark;
--x: light-dark(red, green);
--y: var(--x);
background-color: var(--y);
width: 100px;
height: 100px;
}
</style>
<div></div>