Color.js
Color conversion & manipulation library by the editors of the CSS Color spe...
README
Color.js: Let’s get serious about color
Installation
Install via npm:
- ```
- npm install colorjs.io
- ```
For quick experiments, you can just import Color.js directly from the CDN with all modules included:
- ```js
- import Color from "https://colorjs.io/dist/color.js";
- ```
You can also import specific modules:
- ```js
- import Color from "https://colorjs.io/src/color.js";
- import p3 from "https://colorjs.io/src/spaces/p3.js";
- import rec2020 from "https://colorjs.io/src/spaces/rec2020.js";
- import deltaE200 from "https://colorjs.io/src/deltaE/deltaE2000.js";
- ```