Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

polychrome

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

polychrome

A small library for parsing and manipulating colors

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
254
increased by42.7%
Maintainers
1
Weekly downloads
 
Created
Source

🎨 polychrome

A small < 2kB (gzipped) library for parsing and manipulating colors

Installation

$> yarn add polychrome

or

$> npm install polychrome

Usage

// using ES6 modules
import polychrome from "polychrome";

// using CommonJS modules
const polychrome = require("polychrome");
// Make a polychrome color from hex, rgb(a), and hsl(a) strings
const red = polychrome("#F00");

// Get a string representation of a polychrome color in other formats
red.rgb() // "rgb(255,0,0)"

// Manipulate polychrome colors
const darkerRed = red.darken(); // darkens 10% by default (pass in a percentage)
darkerRed.hsl() // "hsl(0,100%,45%)"

// Chain polychrome methods together before outputting
polychrome("#F00").darken().fadeOut().rgb() // "rgba(230,0,0,0.5)"

API Reference

polychrome(colorString)

colorString can be a hex (3 or 6 digit), rgb(a), or hsl(a) string. Returns a polychrome object.

A polychrome object consists of the following properties:

  • rHex - 2 character hex string representation of the red color channel
  • gHex - 2 character hex string representation of the green color channel
  • bHex - 2 character hex string representation of the blue color channel
  • r - value of the red color channel [0 - 255]
  • g - value of the green color channel [0 - 255]
  • b - value of the blue color channel [0 - 255]
  • h - hue of the color [0 - 360]
  • s - saturation of the color [0 - 100]
  • l - lightness of the color [0 - 100]
  • luma - luma value of the color

In addition to the above properties, the following methods are available to a polychrome:

Output to String

  • .hex() - returns a 6-digit hexadecimal css compatible color string

    polychrome("rgb(0, 0, 0)").hex() // "#000000"
    
  • .rgb() - returns an rgb(a) css compatible color string

    // rgba will be used if an alpha value exists
    polychrome("#000").rgb()           // "rgb(0,0,0)"
    polychrome("#000").fadeOut().rgb() // "rgba(0,0,0,.5)
    
  • .hsl() - returns an hsl(a) css compatible color string

    // hsla will be used if an alpha value exists
    polychrome("#000").hsl()           // "hsl(0,0%,0%)"
    polychrome("#000").fadeOut().hsl() // "hsla(0,0%,0%,.5)
    

Color Manipulation

  • .contrast(dark, light)

    Checks luma value of polychrome and returns light or dark polychrome depending on the contrast level

    polychrome("#000").contrast().rgb() // "rgb(255,255,255)"
    
    polychrome("#DDD").contrast("#333", "#EEE").hex() // "#333333"
    

    dark and light can be a String or polychrome. They default to black (#000) and white (#FFF) if params are not passed in.

  • .darken(percentage)

    Returns a polychrome darkened by percentage. Default 10% if no percentage is passed in.

  • .desaturate(percentage)

    Returns a polychrome desaturated by percentage. Default 10% if no percentage is passed in.

  • .fadeIn(percentage)

    Returns a polychrome faded in by percentage. Default 50% if no percentage is passed in.

  • .fadeOut(percentage)

    Returns a polychrome faded out by percentage. Default 50% if no percentage is passed in.

  • .lighten(percentage)

    Returns a polychrome lightened by percentage. Default 10% if no percentage is passed in.

  • .saturate(percentage)

    Returns a polychrome saturated by percentage. Default 10% if no percentage is passed in.


License

MIT License 2017 © Chad Donohue

Keywords

FAQs

Package last updated on 21 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc