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

flash-colors

v1.0.0

Published

A collection of colors for use in your projects

Downloads

4

Readme

@flash/colors

A collection of color conversion functions.

Installation

npm install @flash/colors

Usage

import { rgb2hsl } from '@flash/colors'

const [h, s, l] = rgb2hsl(255, 0, 0)

API

rgb2hsl(r: number, g: number, b: number): [number, number, number]

Converts an RGB color to HSL.

hsl2rgb(h: number, s: number, l: number): [number, number, number]

Converts an HSL color to RGB.

rgb2cmyk(r: number, g: number, b: number): [number, number, number, number]

Converts an RGB color to CMYK.

cmyk2rgb(c: number, m: number, y: number, k: number): [number, number, number]

Converts a CMYK color to RGB.

rgb2hex(r: number, g: number, b: number): string

Converts an RGB color to a hex string.

hex2rgb(hex: string): [number, number, number]

Converts a hex string to an RGB color.

rgb2hsv(r: number, g: number, b: number): [number, number, number]

Converts an RGB color to HSV.

hsv2rgb(h: number, s: number, v: number): [number, number, number]

Converts an HSV color to RGB.

rgb2hwb(r: number, g: number, b: number): [number, number, number]

Converts an RGB color to HWB.

hwb2rgb(h: number, w: number, b: number): [number, number, number]

The reason for this is two-fold:

Alpha value is orthogonal to color. A color with 50% opacity, is still the same color if it had 100% opacity. It is not clear how alpha values should be handled in some color spaces. For instance, does alpha make sense in CMYK space? You must make effort to preserve alpha values between conversions yourself if this is important to you.

Missing conversions Any conversions that are simple compositions of other conversions have been omitted.

For example, let's imagine we wanted to convert hsl to cmyk. This function doesn't exist, but it can be trivially created by composing hsl2rgb and rgb2cmyk:

import { hsl2rgb, rgb2cmyk } from '@flash/colors'

export function hsl2cmyk(h: number, s: number, l: number): [number, number, number, number] {
  return rgb2cmyk(...hsl2rgb(h, s, l))
}

This is a simple example, but there are many more complex conversions that can be created in this way. If you find yourself needing a conversion that is not provided, please open an issue or submit a PR.