oklchtohex 0.5.0 → 0.5.1
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/README.md +13 -0
- package/package.json +1 -1
- package/src/postcss-plugin.js +1 -1
package/README.md
CHANGED
|
@@ -65,6 +65,19 @@ export default {
|
|
|
65
65
|
};
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
+
If your config uses object-style plugins (common in some templates), use:
|
|
69
|
+
|
|
70
|
+
```js
|
|
71
|
+
const config = {
|
|
72
|
+
plugins: {
|
|
73
|
+
"@tailwindcss/postcss": {},
|
|
74
|
+
"oklchtohex/postcss": { gamut: "clip" }
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
export default config;
|
|
79
|
+
```
|
|
80
|
+
|
|
68
81
|
For Next.js, keep your standard commands:
|
|
69
82
|
|
|
70
83
|
```json
|
package/package.json
CHANGED
package/src/postcss-plugin.js
CHANGED