@csstools/postcss-color-mix-function 3.0.5 → 3.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -5
- package/README.md +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
# Changes to PostCSS Color Mix Function
|
|
2
2
|
|
|
3
|
-
### 3.0.
|
|
3
|
+
### 3.0.6
|
|
4
4
|
|
|
5
|
-
_November
|
|
5
|
+
_November 11, 2024_
|
|
6
6
|
|
|
7
|
-
- Updated [`@csstools/css-
|
|
8
|
-
- Updated [`@csstools/css-parser-algorithms`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms) to [`3.0.4`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-parser-algorithms/CHANGELOG.md#304) (patch)
|
|
9
|
-
- Updated [`@csstools/css-color-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser) to [`3.0.5`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md#305) (patch)
|
|
7
|
+
- Updated [`@csstools/css-color-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser) to [`3.0.6`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md#306) (patch)
|
|
10
8
|
|
|
11
9
|
[Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-mix-function/CHANGELOG.md)
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[PostCSS Color Mix Function] lets you use the `color-mix()` function following the [CSS Color 5 Specification].
|
|
6
6
|
|
|
7
|
-
```
|
|
7
|
+
```css
|
|
8
8
|
.purple_plum {
|
|
9
9
|
color: color-mix(in lch, purple 50%, plum 50%);
|
|
10
10
|
}
|
|
@@ -51,7 +51,7 @@ is preserved. By default, it is not preserved.
|
|
|
51
51
|
postcssColorMixFunction({ preserve: true })
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
-
```
|
|
54
|
+
```css
|
|
55
55
|
.purple_plum {
|
|
56
56
|
color: color-mix(in lch, purple 50%, plum 50%);
|
|
57
57
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@csstools/postcss-color-mix-function",
|
|
3
3
|
"description": "Use the color-mix function in CSS",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.6",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Antonio Laguna",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"dist"
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@csstools/css-color-parser": "^3.0.
|
|
51
|
+
"@csstools/css-color-parser": "^3.0.6",
|
|
52
52
|
"@csstools/css-parser-algorithms": "^3.0.4",
|
|
53
53
|
"@csstools/css-tokenizer": "^3.0.3",
|
|
54
54
|
"@csstools/postcss-progressive-custom-properties": "^4.0.0",
|