Skip to content

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

License

Notifications You must be signed in to change notification settings

scientific-dev/colormath.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

50 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Colormath.js 🎨

Colormath.js is a color conversion and color manipulation library written in typescript for Node.js, Deno and Browser.

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

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

Using colormath.js through Browser

<script src="https://cdn.skypack.dev/colormath.js@latest?min"></script>

Using colormath.js through Deno

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

Examples

Manipulation Methods

Hex and Rgb are only supported for manipulation methods.

// 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.

// 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.

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 in github.