pretty-color-picker 0.1.0 → 0.1.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 +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Pretty Color Picker
|
|
2
2
|
|
|
3
|
-
A perceptually accurate color picker for the modern web. Colors
|
|
3
|
+
A perceptually accurate color picker for the modern web. Colors live in **OKLCH** (`picker.color`); Hex, RGB, HSL, and OKLCH are there for editing and display. The plane is **saturation × value** at the current hue.
|
|
4
4
|
|
|
5
5
|
Native **Web Component**. Works in any framework or plain HTML.
|
|
6
6
|
|
|
7
|
-
**[Live demo](https://colors.kiira.in)** · **[GitHub](https://github.com/kiiradesign/pretty-color-picker)**
|
|
7
|
+
**[Live demo](https://colors.kiira.in)** · **[npm](https://www.npmjs.com/package/pretty-color-picker)** · **[GitHub](https://github.com/kiiradesign/pretty-color-picker)**
|
|
8
8
|
|
|
9
9
|
The design and interactions are inspired by [DialKit](https://joshpuckett.me/dialkit). I'm considering contributing this component upstream.
|
|
10
10
|
|
|
@@ -14,6 +14,8 @@ Saturation × value color plane with hue and alpha sliders, format tabs (Hex / R
|
|
|
14
14
|
|
|
15
15
|
## Install
|
|
16
16
|
|
|
17
|
+
Published on npm as [`pretty-color-picker`](https://www.npmjs.com/package/pretty-color-picker) (v0.1.1).
|
|
18
|
+
|
|
17
19
|
```bash
|
|
18
20
|
npm install pretty-color-picker
|
|
19
21
|
```
|
package/package.json
CHANGED