- From: Chris Lilley via GitHub <sysbot+gh@w3.org>
- Date: Wed, 16 Feb 2022 16:30:44 +0000
- To: public-css-archive@w3.org
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