@phun-ky/moebius 1.0.0 → 1.0.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 +3 -3
- package/dist/moebius.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ const defaultOptions = {
|
|
|
74
74
|
noDuplicates: true,
|
|
75
75
|
colorScaleMode: 'lch',
|
|
76
76
|
reverseDirection: false,
|
|
77
|
-
divergentColor: '#f5f5f5'
|
|
77
|
+
divergentColor: '#f5f5f5'
|
|
78
78
|
};
|
|
79
79
|
```
|
|
80
80
|
|
|
@@ -88,7 +88,7 @@ const { MoebiusPalette, MoebiusColor } = await Moebius();
|
|
|
88
88
|
const palettes = new MoebiusPalettes({
|
|
89
89
|
baseColor: new MoebiusColor('#003f5c'),
|
|
90
90
|
secondaryColor: new MoebiusColor('#ff9900'),
|
|
91
|
-
...options
|
|
91
|
+
...options
|
|
92
92
|
});
|
|
93
93
|
```
|
|
94
94
|
|
|
@@ -409,7 +409,7 @@ Types can be found in `@phun-ky/moebius/moebius.d.ts`.
|
|
|
409
409
|
|
|
410
410
|
## Contributing
|
|
411
411
|
|
|
412
|
-
If you want to contribute, please read the [CONTRIBUTING.md](https://github.com/phun-ky/
|
|
412
|
+
If you want to contribute, please read the [CONTRIBUTING.md](https://github.com/phun-ky/moebius/blob/main/CONTRIBUTING.md) and [CODE_OF_CONDUCT.md](https://github.com/phun-ky/moebius/blob/main/CODE_OF_CONDUCT.md)
|
|
413
413
|
|
|
414
414
|
## Sponsor me
|
|
415
415
|
|
package/dist/moebius.js
CHANGED