Re: [csswg-drafts] [css-color] `color-interpolation` inherited property to set default interpolation space (#7035)

So this would look like

```css
.foo {
  background-color: #0000FF;
  transition: background-color 2s in oklab;
}
.foo:hover {
  background-color: color(display-p3 0.1 0.9 0.4);
}
```

or, with this new proposal:

```css
body {
  color-interpolation: in oklab;
}
.foo {
  background-color: #0000FF;
  transition: background-color 2s;
}
.foo:hover {
  background-color: color(display-p3 0.1 0.9 0.4);
}
```

-- 
GitHub Notification of comment by svgeesus
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7035#issuecomment-1041850688 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Wednesday, 16 February 2022 16:30:47 UTC