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

colorpedia

v1.0.5

Published

Package useful to everything you want to do with colors.

Downloads

81

Readme

Installation

Install colorpedia with npm

  npm i --save colorpedia

Install colorpedia with yarn

  yarn add colorpedia

Usage/Examples

Convert

  • hexToRgb(hex: string): { r: number, g: number, b: number } | null
import { convert } from "colorpedia";

const { r, g, b } = convert.hexToRgb("#6c34f2"); // { r: 108, g: 52, b: 242 }

Convert hexadecimal to rgb

  • rgbToHex(r: number, g: number, b: number): hex: string | null
import { convert } from "colorpedia";

const hex = convert.rgbToHex(108, 52, 242); // hex: "#6c34f2"

Convert rgb color to hexadecimal color

Clearer

  • hex(hex: string, percentage: number): hex: string | null
import { clearer } from "colorpedia";

const hexClearer     = clearer.hex("#6c34f2", 20); // hex: "#823fff"
const hexMoreClearer = clearer.hex("#6c34f2", 40); // hex: "#9849ff"
const hexEvenClearer = clearer.hex("#6c34f2", 60); // hex: "#ad54ff"

Cleared hex in 20, 40 and 60 percent

  • rgb(r: number, g: number, b: number): { r: number, g: number, b: number} | null
import { clearer } from "colorpedia";

const rgbClearer     = clearer.rgb(108, 52, 242, 20); // { r: 130, g: 63, b: 255 }
const rgbMoreClearer = clearer.rgb(108, 52, 242, 40); // { r: 152, g: 73, b: 255 }
const rgbEvenClearer = clearer.rgb(108, 52, 242, 60); // { r: 173, g: 84, b: 255 }

const { r, g, b } = rgbClearer;

Cleared rgb in 20, 40 and 60 percent

Darker

  • hex(hex: string, percentage: number): hex: string | null
import { darker } from "colorpedia";

const hexDarker     = darker.hex("#6c34f2", 20); // hex: "#5629c1"
const hexMoreDarker = darker.hex("#6c34f2", 40); // hex: "#401f91"
const hexEvenDarker = darker.hex("#6c34f2", 60); // hex: "#2b1460"

Darker hex in 20, 40 and 60 percent

  • rgb(r: number, g: number, b: number): { r: number, g: number, b: number} | null
import { darker } from "colorpedia";

const rgbDarker     = darker.rgb(108, 52, 242, 20); // { r: 86, g: 41, b: 193 }
const rgbMoreDarker = darker.rgb(108, 52, 242, 40); // { r: 64, g: 31, b: 145 }
const rgbEvenDarker = darker.rgb(108, 52, 242, 60); // { r: 43, g: 20, b: 96 }

const { r, g, b} = rgbDarker;

Darker rgb in 20, 40 and 60 percent

Invert

  • hex(hex: string): hex: string | null
import { invert } from "colorpedia";

const hexInverted = invert.hex("#6c34f2"); // hex: "#93cb0d"

hex has been Inverted

  • rgb(r: number, g: number, b: number): { r: number, g: number, b: number} | null
import { invert } from "colorpedia";

const rgbInverted = invert.rgb(108, 52, 242, 20); // { r: 147, g: 203, b: 13 }

const { r, g, b} = rgbInverted;

rgb has been Inverted

Lightness

  • hex(hex: string): lightness: number | null
import { lightness } from "colorpedia";

const hexLightness = lightness.hex("#6c34f2"); // lightness: 0.5764705882352941

Function has returned the lighness of hex

  • rgb(r: number, g: number, b: number): { r: number, g: number, b: number} | null
import { lightness } from "colorpedia";

const rgbLightness = lightness.rgb(108, 52, 242, 20); // lightness: 0.5764705882352941

Function has returned the lighness of rgb