Giter Site home page Giter Site logo

00-00-00-11 / colormath.js Goto Github PK

View Code? Open in Web Editor NEW

This project forked from scientific-dev/colormath.js

0.0 1.0 0.0 106 KB

A color conversion and color manipulation library written in typescript for Node.js, Deno and Browser ๐ŸŽจ.

Home Page: https://www.npmjs.com/package/colormath.js

License: MIT License

TypeScript 98.70% JavaScript 1.30%

colormath.js's Introduction

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.

colormath.js's People

Contributors

scientific-dev avatar ihavenozpu avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.