npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

colorcolor

v3.0.1

Published

colorcolor converts Hex/HexA/RGB/RGBA/HSL/HSLA/HSV/HSB/HWB color strings to Hex/HexA/RGB/RGBA/HSL/HSLA/HSV/HSB/HWB color strings.

Downloads

6,152

Readme

colorcolor - Javascript Function

npm version Build Status

The colorcolor() function converts HEX/HEXA/HSB/HSL/HSLA/HSV/HWB/RGB/RGBA color strings to HEX/HEXA/HSB/HSL/HSLA/HSV/HWB/RGB/RGBA color strings.

Demo

http://metaloha.github.io/color2color/

Install

colorcolor is available via NPM:

npm install colorcolor

Usage

colorcolor( originalColor: string, [newColorType: string( hex|hexa|hsb|hsl|hsla|hsv|hwb|rgb|rgba ) = 'rgba'] )

The first argument is the original color string in HEX, HEXA, HSB, HSL, HSLA, HSV, HWB, RGB, or RGBA format, or a CSS named color.

The second argument (optional) is which format you'd like the new color string to be in. This will always default to 'rgba'.

Examples

colorcolor('#dfe') === 'rgba(221, 255, 238, 1)'
colorcolor('#036', 'rgb') === 'rgb(0, 51, 102)'
colorcolor('rgba(64,64,64,0.5)') === 'rgba(64, 64, 64, 0.5)'
colorcolor('rgba(64 64 64 / 0.5)') === 'rgba(64, 64, 64, 0.5)'
colorcolor('rgb(64,64,64)', 'hex') === '#404040'
colorcolor('#dfe', 'rgba') === 'rgba(221, 255, 238, 1)'
colorcolor('hsla(109,100%,37%,1)') === 'rgba(35, 189, 0, 1)'
colorcolor('hsla(0.35turn 70% 55% / 1)') === 'rgba(60, 221, 76, 1)'
colorcolor('rgba(35,189,0,0.75)', 'hsl') === 'hsl(109, 100%, 37%)'
colorcolor('rgba(85%,55%,10.5%,70%)', 'hsl') === 'hsl(36, 78%, 48%)'
colorcolor('#3fa796a0', 'hsla') === 'hsla(170, 45%, 45%, 0.63)'
colorcolor('hwb(200grad 50% 25% / 0.75)') === 'rgba(128, 191, 191, 0.75)'
colorcolor('AliceBlue', 'hwb') === 'hwb(208 94% 0% / 1)'

Valid color formats

colorcolor understands a mix of CSS and non-CSS color models, and is being actively expanded. The following formats are currently understood by colorcolor:

RGB (read more)

Both hexadecimal and numeric notations are supported.

  • #RGB[A]
  • #RRGGBB[AA]
    • R, G, B, and A are hexadecimal numbers from 00 to ff
    • Examples:
      • #ad6
      • #AD6e
      • #f43E12
      • #F43e12d5
  • rgb(R,G,B)
  • rgb(R G B)
  • rgba(R, G, B, A)
  • rgba(R G B / A)
    • R, G, and B can be decimals from 0 to 255 or percentages from 0% to 100%
    • A can be a percentage from 0% to 100% or a float from 0 to 1
    • Examples
      • rgb(121, 50, 89)
      • rgb(121 50 89)
      • rgba(80, 205, 40, 0.5)
      • rgba(80 205 40 / 0.5)
      • rgb(50%, 75%, 50%)
      • rgba(50% 75% 50% / 75%)

HSL (read more)

  • hsl(H, S, L)
  • hsl(H S L)
  • hsla(H, S, L, A)
  • hsla(H S L / A)
    • H is an angle expressed as deg, grad, rad, or turn (degree is assumed if the number doesn't include a unit)
    • S and L are percentages from 0% to 100%
    • A can be a percentage from 0% to 100% or a float from 0 to 1
    • Examples
      • hsl(270, 100%, 50%)
      • hsl(0.75turn 100% 50%)
      • hsla(2.65grad, 100%, 50%, 0.75)
      • hsla(3.14rad 100% 50% / 75%)

HSV/HSB (read more)

hsv and hsb are interchangeable and mean the same thing. These are not CSS colors, but are still supported as input and output formats.

  • hsv(H, S, V)
  • hsb(H, S, B)
    • H is an angle expressed as deg, grad, rad, or turn (degree is assumed if the number doesn't include a unit)
    • S, V, and B are percentages from 0% to 100%
    • Examples
      • hsv(0.75turn, 100%, 50%)
      • hsb(270, 100%, 50%)

HWB (read more)

Note that this function does not accept commas, and instead of an additional hwba function the opacity is optional.

  • hwb(H W B)
  • hwb(H W B / A)
    • H is an angle expressed as deg, grad, rad, or turn (degree is assumed if the number doesn't include a unit)
    • W and B are percentages from 0% to 100%
    • A can be a percentage from 0% to 100% or a float from 0 to 1
    • Examples
      • hwb(270 100% 50%)
      • hwb(0.75turn 100% 50%)
      • hwb(2.65grad 100% 50% / 0.75)
      • hwb(3.14rad 100% 50% / 75%)

Testing

You can run npm run test or npm run test:watch to run the tests alone. The coverage report can be updated with npm run test:coverage.

Support

Reach out to the maintainer at one of the following places:

Contributing contributions welcome

First off, thanks for taking the time to contribute! Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make will benefit everybody else and are greatly appreciated.

We have set up a separate document containing our contribution guidelines.

Thank you for being involved!

Authors & contributors

The original setup of this repository is by Russel Porosky.

For a full list of all authors and contributors, check the contributor's page.

License

This project is licensed under the MIT license.

See LICENSE for more information.