Skip to content

color-mix-variadic-function-arguments #453

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

---
Expand Down
17 changes: 17 additions & 0 deletions cssdb.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
17 changes: 17 additions & 0 deletions cssdb.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
17 changes: 17 additions & 0 deletions cssdb.settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": [
{
Expand Down
2 changes: 1 addition & 1 deletion src/components/header.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function renderHeader() {
What’s next for CSS?
</h1>
<p class="cssdb-header-description">
<strong>cssdb</strong> is a comprehensive list of CSS features and their positions in the process of becoming implemented web standards.
<strong>cssdb</strong> is a list of CSS features and their positions in the process of becoming implemented web standards.
</p>
</div>
<a class="cssdb-header-link" href="#the-staging-process">What are the stages?</a>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export function renderIndex() {
<head>
<meta charset="utf-8">
<title>CSS Database - CSS Tools</title>
<meta name="description" content="A comprehensive list of CSS features and their positions in the process of becoming implemented web standards.">
<meta name="description" content="A list of CSS features and their positions in the process of becoming implemented web standards.">
<link rel="preconnect" href="https://d32ekf2zat2q3c.cloudfront.net" crossorigin />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
Expand All @@ -24,7 +24,7 @@ export function renderIndex() {
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@css_tools_">
<meta property="og:title" content="CSS Database">
<meta property="og:description" content="A comprehensive list of CSS features and their positions in the process of becoming implemented web standards.">
<meta property="og:description" content="A list of CSS features and their positions in the process of becoming implemented web standards.">
<meta property="og:image" content="https://cssdb.org/images/css.png">
<meta property="og:site_name" content="cssdb">
<meta property="og:type" content="website">
Expand Down