An open API service indexing awesome lists of open source software.

https://github.com/scientific-dev/colormath.js

A color conversion and color manipulation library written in typescript for Node.js, Deno and Browser 🎨.
https://github.com/scientific-dev/colormath.js

color colormath colors colour javascript typescript

Last synced: 19 days ago
JSON representation

A color conversion and color manipulation library written in typescript for Node.js, Deno and Browser 🎨.

Awesome Lists containing this project

README

          

# Colormath.js 🎨

Colormath.js is a [color conversion](#conversion-methods) and [color manipulation](#manipulation-methods) library written in typescript for Node.js, Deno and Browser.

```js
const colors = require('colormath.js');

console.log(colors.rgb.toHex([255, 255, 255])); // '#ffffff'
console.log(colors.hex.toRgb('fff')); // [255, 255, 255]
```

## Installation

Using colormath.js through Node.js

```js
const colormath = require('colormath.js');
```

Using colormath.js through Browser

```html

```

Using colormath.js through Deno

```js
import * as colormath from 'https://deno.land/x/colormath/mod.ts';
```

## Examples

### Manipulation Methods

Hex and Rgb are only supported for manipulation methods.

```js
// Invert a color
colors.invert([114, 152, 218]).rgb; // [141, 103, 37]
colors.invert('#7298da').hex; // #8d6725

// Rotate the hue of the color.
colors.hue([114, 152, 218], 45).rgb; // [154.1, 114, 218]

// Returns the complement of a color.
colors.complement([114, 152, 218]).rgb; // [218, 804.1, 114]

// Saturates a color.
colors.saturate([114, 152, 218], 20).rgb; // [0, 79.6, 218]

// Desaturates a color.
colors.desaturate([114, 152, 218], 20).rgb; // [218, 114, 114]

// Grayscales a color.
colors.grayscale([114, 152, 218]).rgb; // [114, 152, 218]

// Mix colors
colors.mixColor([114, 152, 218], [255, 255, 255]).rgb // [184.5, 203.5, 236.5]

// Lighens a color.
colors.lighten([114, 152, 218], 20).rgb; // [165, 203, 255]

// Darkens a color.
colors.darken([114, 152, 218], 20).rgb; // [63, 101, 167]
```

### Conversion Methods

The color models or formats supported by the library are `hex`, `rgb`, `hsv`, `hsl`, `hwb`, `cmyk`, `xyz`, `lab`, `lch`, `ansi16`, `ansi256`, `gray` and `apple`.

```js
// Converts rgb to hex
colors.rgb.toHex([255, 255, 255]); // '#ffffff'

// Converts hex to rgb
colors.hex.toRgb('fff'); // [255, 255, 255]

// Converts hsl to rgb
colors.hsl.toRgb([218, 58, 65]); // [114, 151.9, 217.5]

// Converts grayscale to rgb
colors.gray.toRgb(100) // [255, 255, 255]
```

### Supported Conversions

These are supported color conversions from A to B suported by the library.

Only conversions which are used by people are added to the library and if you feel some of the unavailable color conversions are useful then you can create an issue or create a pr if you are able to add it yourself.

| ⬇ A \ B ➡ | rgb | hex | hsv | hsl | hwb | lab | lch | xyz | cmyk | ansi16 | ansi256 | gray | apple |
|---------|-----|-----|-----|-----|-----|-----|-----|-----|------|--------|---------|------|-------|
| rgb | | ✔ | ✔ | ✔ | ✔ | ✔ | ❌ | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ |
| hex | ✔ | | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
| hsv | ✔ | ✔ | | ✔ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
| hsl | ✔ | ✔ | ✔ | | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
| hwb | ❌ | ✔ | ❌ | ❌ | | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
| lab | ✔ | ❌ | ❌ | ❌ | ❌ | | ✔ | ✔ | ❌ | ❌ | ❌ | ❌ | ❌ |
| lch | ❌ | ❌ | ❌ | ❌ | ❌ | ✔ | | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
| xyz | ✔ | ❌ | ❌ | ❌ | ❌ | ✔ | ❌ | | ❌ | ❌ | ❌ | ❌ | ❌ |
| cmyk | ✔ | ✔ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | | ❌ | ❌ | ❌ | ❌ |
| ansi16 | ✔ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | | ❌ | ❌ | ❌ |
| ansi256 | ✔ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | | ❌ | ❌ |
| gray | ✔ | ✔ | ✔ | ✔ | ✔ | ✔ | ❌ | ❌ | ✔ | ❌ | ❌ | | ❌ |
| apple | ✔ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | |

- ✔ means the color conversion is supported.
- ❌ means the color conversion is not supported.

### Sub conversions

You can still perform sub conversions. For example, conversions like rgb to lch does not exist you can still perform conversions like rgb to lab to lch.

```js
const colors = require('colormath.js');
const rgbToLch = (rgb) => colors.lab.toLch(colors.rgb.toLab(rgb));

console.log(rgbToLch([255, 255, 255]));
// Output: [ 100.00000386666655, 0.00001795054880958058, 158.19859051364818 ]
```

## Things to be added

- Support for `alpha` and string conversions.
- Find a better way to do `ColorResult`.
- Extracting colors from images.
- More color manipulation methods.
- Support for color spaces other than hex and rgb for method functions.

## Help

If any doubts, bugs, reports regarding the module or want to add a new conversion or a new color model you can create an [issue](https://github.com/scientific-dev/colormath.js/issues) in github.