@csstools/postcss-gamut-mapping 2.0.4 → 2.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 -4
- package/README.md +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
# Changes to PostCSS gamut-mapping
|
|
2
2
|
|
|
3
|
-
### 2.0.
|
|
3
|
+
### 2.0.6
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
_November 11, 2024_
|
|
6
6
|
|
|
7
|
-
- Updated [`@csstools/css-parser
|
|
8
|
-
- Updated [`@csstools/css-color-parser`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser) to [`3.0.4`](https://github.com/csstools/postcss-plugins/tree/main/packages/css-color-parser/CHANGELOG.md#304) (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)
|
|
9
8
|
|
|
10
9
|
[Full CHANGELOG](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-gamut-mapping/CHANGELOG.md)
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ This is done by lowering the `chroma` in `oklch` until the color is in gamut.
|
|
|
12
12
|
|
|
13
13
|
Using the `@media (color-gamut)` media feature makes it possible to only use the wide gamut colors on displays that support them.
|
|
14
14
|
|
|
15
|
-
```
|
|
15
|
+
```css
|
|
16
16
|
p {
|
|
17
17
|
background-color: oklch(80% 0.05 0.39 / 0.5);
|
|
18
18
|
color: oklch(20% 0.234 0.39 / 0.5);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@csstools/postcss-gamut-mapping",
|
|
3
3
|
"description": "Gamut map css colors to fit display specific gamuts",
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.6",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
7
7
|
"name": "Antonio Laguna",
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
"dist"
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@csstools/css-color-parser": "^3.0.
|
|
52
|
-
"@csstools/css-parser-algorithms": "^3.0.
|
|
53
|
-
"@csstools/css-tokenizer": "^3.0.
|
|
51
|
+
"@csstools/css-color-parser": "^3.0.6",
|
|
52
|
+
"@csstools/css-parser-algorithms": "^3.0.4",
|
|
53
|
+
"@csstools/css-tokenizer": "^3.0.3"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"postcss": "^8.4"
|