Giter Site home page Giter Site logo

hex-color-utils's Introduction

hex-color-utils

JavaScript primitive number between 0 ( === 0x000000 ) and 16777215 ( === 0xffffff ) inclusive can be used as color. hex-color-utils is the utils for it.

import {
  fromCSSColor,
  toCSSColor,
  fromRGB,
  toRGBArray,
  fromHSL,
  toHSLArray,
  lighterThan,
  blendModeDifference
} from 'hex-color-utils';

fromCSSColor( '#f00' );
// 16711680 (= 0xff0000)

fromCSSColor( 'red' );
// 16711680 (= 0xff0000)

fromCSSColor( 'rgba( 255, 0, 0 )' );
// 16711680 (= 0xff0000)

toCSSColor( 0xff0000 );
// '#ff0000'


const r = 1; // 0 to 1
const g = 0; // 0 to 1
const b = 0; // 0 to 1
fromRGB( r, g, b );
// 16711680 (= 0xff0000)

toRGBArray( 0xff0000 );
// [ 1, 0, 0 ]

const hue = 0; // 0 to 1
const sat = 1; // 0 to 1
const lightness = 0.5; // 0 to 1
fromHSL( hue, sat, lightness );
// 16711680 (= 0xff0000)

toHSLArray( 0xff0000 );
// [ 0, 1, 0.5 ]

lighterThan( 0xff0000, 0xcc0000 );
// true (compare with the lightness of HSL)

blendModeDifference( 0xff0000, 0xcc0000 );
// 3342336

hex-color-utils's People

Contributors

yomotsu avatar

Stargazers

yesh van aken avatar Zoxon avatar Chris avatar

Watchers

 avatar James Cloos 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.