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

colors-formater

v0.0.9

Published

A project to handle colors in javascript

Downloads

12

Readme

colors-formater

A library to provide simple manipulation between colors formats in javascript

Instalation

Latest Version

// NPM
npm install --save colors-formater

// Yarn
yarn add colors-formater

A Specific Version

// NPM
npm install --save colors-formater#v.0.8

// Yarn
yarn add colors-formater#v.0.8

Examples

Import

// CommonJS
const Colors = require("colors-formater");

// ES6
import Colors from "colors-formater";

Initialization

// Initialization with a Hexa Color
const color = Colors("123");
const color = Colors("#123");
const color = Colors("#ABCDEF");

// Initialization with a RGB Object
const color = Colors({ r: 255, g: 23, b: 87 });

// Initialization with a RGB String
const color = Colors("rgb(23, 45, 67)");
const color = Colors("rgba(23, 45, 67, 0.4)");

// Initialization with a HSL Object
const color = Colors({ h: 255, s: "23%", l: "50%" });

// Initialization with a HSL Sring
const color = Colors("hsl(255, 23%, 50%)");

Convertions

// Init
const color = Colors("#abc");

// Convert do normalized Hexadecimal
color.toHex(); // #AABBCC

// Convert do RGB Object
color.toRGB(); // { r: 12, g: 45, b: 56 }

// Convert to RGB string
color.toRGBString(); // rgb( 12, 45, 56 )

// Convert to HSL Object
color.toHSL(); // { h: 30, s: 50%, l: 50% }

// Convert to HSL String
color.toHSLString(); // hsl( 30, 50%, 50% )

Verifications

// Init
const color = Colors("#abc");

// Is a valid color in any format supported by parse()?
color.isValid(); // true

// Is a hexadecimal color?
color.isHex(); // true

// Is a HSL object color?
color.isHSL(); // false

// Is a RGB Object color?
color.isRGB(); //false

// Is a Light color?
color.isLight(); //false

// Is a Dark color?
color.isDark(); //true

Calculations

These functions changes internal initial color. Always prefer using it with the constructor Colors([color])

// Init
const color = Colors("#abc");

// Darken a color and returns the result as hexadecimal
Colors("#A34").darken(0.2).toHex();

// Lighten a color and returns the result as RGB object
Colors("#A34").lighten(0.35).toRGB();

// Inverts a color and returns the result as HSL object
Colors("#A34").invert().toHSL();

Alpha

These functions adds alpha to color

// Init
const color = Colors("#abc");

// Darken a color and returns the result as hexadecimal with alpha
Colors("#A34").toHexa(0.2);

// Lighten a color and returns the result as RGBA object
Colors("#A34").toRGBA(0.2);

// Lighten a color and returns the result as RGBA string
Colors("#A34").toRGBAString(0.2);