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.
Files changed (2) hide show
  1. package/README.md +4 -2
  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 are stored internally as **OKLCH** (`picker.color`); Hex, RGB, HSL, and OKLCH are edit/display formats. The 2D plane is a classic **saturation × value** slice at the current hue (the layout every color picker uses), not an OKLCH chroma × lightness plane.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pretty-color-picker",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A perceptually accurate color picker. OKLCH storage, classic saturation × value plane.",
5
5
  "type": "module",
6
6
  "main": "./dist/pretty-color-picker.umd.cjs",