diff --git a/CHANGELOG.md b/CHANGELOG.md index 81a9c37..ca61cb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changes to cssdb +### 8.3.0 (May 26, 2025) + +- Added `color-mix-variadic-function-arguments` + ### 8.2.6 (May 26, 2025) - Updated `@mdn/browser-compat-data` to `6.0.17` diff --git a/README.md b/README.md index d5d3741..1d7c817 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![NPM Version][npm-img]][npm-url] [![Build Status][cli-img]][cli-url] -[cssdb] is a comprehensive list of CSS features and their positions in +[cssdb] is a list of CSS features and their positions in the process of becoming implemented web standards. --- diff --git a/cssdb.json b/cssdb.json index 0dfc16d..e678903 100644 --- a/cssdb.json +++ b/cssdb.json @@ -373,6 +373,23 @@ "vendors_implementations": 3, "web-feature": "color-mix" }, + { + "id": "color-mix-variadic-function-arguments", + "title": "`color-mix()` Function with 1+ arguments", + "description": "Mix any number of colors", + "specification": "https://www.w3.org/TR/css-color-5/#color-mix", + "stage": 2, + "browser_support": {}, + "docs": {}, + "example": "p {\n color: color-mix(in lch, red, lime, blue);\n}", + "polyfills": [ + { + "type": "PostCSS Plugin", + "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-mix-variadic-function-arguments" + } + ], + "vendors_implementations": 0 + }, { "id": "container-queries", "title": "Container Queries", diff --git a/cssdb.mjs b/cssdb.mjs index 09d7059..b29297e 100644 --- a/cssdb.mjs +++ b/cssdb.mjs @@ -373,6 +373,23 @@ export default [ "vendors_implementations": 3, "web-feature": "color-mix" }, + { + "id": "color-mix-variadic-function-arguments", + "title": "`color-mix()` Function with 1+ arguments", + "description": "Mix any number of colors", + "specification": "https://www.w3.org/TR/css-color-5/#color-mix", + "stage": 2, + "browser_support": {}, + "docs": {}, + "example": "p {\n color: color-mix(in lch, red, lime, blue);\n}", + "polyfills": [ + { + "type": "PostCSS Plugin", + "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-mix-variadic-function-arguments" + } + ], + "vendors_implementations": 0 + }, { "id": "container-queries", "title": "Container Queries", diff --git a/cssdb.settings.json b/cssdb.settings.json index 5b7aec1..0c190b4 100644 --- a/cssdb.settings.json +++ b/cssdb.settings.json @@ -245,6 +245,23 @@ } ] }, + { + "id": "color-mix-variadic-function-arguments", + "title": "`color-mix()` Function with 1+ arguments", + "description": "Mix any number of colors", + "specification": "https://www.w3.org/TR/css-color-5/#color-mix", + "stage": 2, + "mdn_path": [], + "browser_support": {}, + "docs": {}, + "example": "p {\n color: color-mix(in lch, red, lime, blue);\n}", + "polyfills": [ + { + "type": "PostCSS Plugin", + "link": "https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-mix-variadic-function-arguments" + } + ] + }, { "id": "container-queries", "title": "Container Queries", diff --git a/package.json b/package.json index f6818c9..2206fbf 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "cssdb", - "version": "8.2.6", + "version": "8.3.0", "type": "module", - "description": "A comprehensive list of CSS features and their positions in the process of becoming implemented web standards", + "description": "A list of CSS features and their positions in the process of becoming implemented web standards", "license": "MIT-0", "contributors": [ { diff --git a/src/components/header.mjs b/src/components/header.mjs index 170e00d..21e24b2 100644 --- a/src/components/header.mjs +++ b/src/components/header.mjs @@ -15,7 +15,7 @@ export function renderHeader() { What’s next for CSS?
- cssdb is a comprehensive list of CSS features and their positions in the process of becoming implemented web standards. + cssdb is a list of CSS features and their positions in the process of becoming implemented web standards.
What are the stages? diff --git a/src/pages/index.mjs b/src/pages/index.mjs index a77b186..f9dbcdb 100644 --- a/src/pages/index.mjs +++ b/src/pages/index.mjs @@ -10,7 +10,7 @@ export function renderIndex() {