- From: Anne van Kesteren via GitHub <sysbot+gh@w3.org>
- Date: Tue, 17 Sep 2024 15:29:43 +0000
- To: public-css-archive@w3.org
Thanks! Some examples (mainly borrowed from the tests I wrote): ```js context.fillStyle = "#ff00ff00"; console.log(context.fillStyle); // "rgba(255, 0, 255, 0)" context.fillStyle = "lab(29% 39 20)"; console.log(context.fillStyle); // "lab(29 39 20)" context.fillStyle = "rgb(255, 0, 255)" console.log(context.fillStyle); // "#ff00ff" ``` -- GitHub Notification of comment by annevk Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/10550#issuecomment-2356250550 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Tuesday, 17 September 2024 15:29:44 UTC