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

rygb

v0.1.5

Published

A simple grammar for specifying color

Downloads

21

Readme

RYGB

RYGB color notation is a syntactical abstraction over the HSV color model. Specifically, it provides an intuitive and analogous approach to expressing hue by way of additive, proportional mixing of adjacent primary colors.

The RYGB chromatic model is based on the opponent process color theory, first theorized by physiologist Ewald Hering in 1892. This model consists of two opposing color axioms - red/green and yellow/blue. The orthogonal arrangement of these axioms results in 4 adjacent color pairs, each a binary set:

 

Any desired hue can be expressed by determining the appropriate pair, then mixing the two associated primaries in relative parts. For example, the notation 'r2y3' results in a reddish-yellow hue that is exactly 2 parts red and 3 parts yellow.

RYGB was created for coding-centric design/development workflows. It is intended for rapid prototyping, graphic design, illustration, animation, and scenarios when experimental color choices may happen frequently. In such cases, the repeated context-switching inherent with the use of traditional GUI color-selection tools may be both cumbersome and undesirable.

Usage

In node.js (after npm install rygb):

var rygb = require('rygb')

Equal parts blue and red will produce magenta:

rygb('br').hex()  // '#ff00ff'

Equal parts red and yellow will produce orange:

rygb('ry').hex()  // '#ff8000'

1 part red, 2 parts yellow:

rygb('ry2').hex()  // '#ffaa00'

3 parts red, 7 parts yellow:

rygb('r3y7').hex()  // 'ffb300'

Order is reversible, although ry, yg, gb, and br is idiomatic.

rygb('y7r3').hex() === rygb('r3y7').hex()  // true

When using a single part of a primary, the 1 is optional. Although its omission is idiomatic, it's inclusion is occasionally useful for readability in certain ratios:

rygb('r1y2').hex() === rygb('ry2').hex()  // true

rygb('br').hex() === rygb('b1r1').hex()  // true

rygb('b23r1').hex() === rygb('b23r').hex()  // true

Saturation, value, and alpha are each expressed using an integer [0-100], representing a percentage. The default value for each is 100.

3 parts red, 7 parts yellow, with 50% saturation:

rygb('r3y7-s50').hex()  // '#ffd980'

3 parts red, 7 parts yellow, with 50% saturation and 33% value:

rygb('r3y7-s50-v33').hex()  // '#f4482a'

3 parts red, 7 parts yellow, with 50% saturation, 33% value, and 66% alpha:

rygb('r3y7-s50-v33-a66').hexa()  // '#f4482aa8'

Primary colors can be expressed using a single character.

rygb('r').hex()  // '#ff0000' ← red

rygb('y').hex()  // '#ffff00' ← yellow

rygb('g').hex()  // '#00ff00' ← green

rygb('b').hex()  // '#0000ff' ← blue

White, black, and neutral grays can be expressed by limiting input to the value syntax.

rygb('v100').hex()  // '#ffffff' ← white

rygb('v0').hex()  // '#000000' ← black

rygb('v50').hex()  // '#808080' ← 50% gray

More examples with various colors:

rygb('gb-s21-v83').hex()  // '#a7d4d4' ← robin's egg blue

rygb('g2b5-s31-v47').hex()  // '#536878' ← payne's gray

rygb('g21b1-s24-v88').hex()  // '#abe0af' ← celadon

rygb('r1y3-s80-v96').hex()  // '#f5c431' ← saffron

rygb('b9r4-s31').hex()  // '#e1b0ff' ← mauve

rygb('yg').hex()  // '#80ff00' ← chartreuse

rygb('y-s6').hex()  // '#fffff0' ← ivory

rygb('v20').hex()  // '#333333' ← jet

API

First, a quick overview by example:

rygb('gb-s21-v83').hex() // '#a7d4d4' 

rygb('gb-s21-v83').hexa() // '#a7d4d4ff'

rygb('gb-s21-v83').int24() // 10998739 

rygb('gb-s21-v83').rgb().dec() // [ 0.6557, 0.83, 0.83 ] 

rygb('gb-s21-v83').rgb().bit() // [ 167, 212, 212 ] 

rygb('gb-s21-v83').rgb().css() // 'rgb(167, 212, 212)' 

rygb('gb-s21-v83').rgba().dec() // [ 0.6557, 0.83, 0.83, 1 ] 

rygb('gb-s21-v83').rgba().bit() // [ 167, 212, 212, 255 ] 

rygb('gb-s21-v83').rgba().css() // 'rgba(167, 212, 212, 1)' 

rygb('gb-s21-v83').argb().dec() // [ 1, 0.6557, 0.83, 0.83 ] 

rygb('gb-s21-v83').argb().bit() // [ 255, 167, 212, 212]

rygb('gb-s21-v83').json() // {h: {g: 1, b: 1}, s: 0.21, v: 0.83} 

const obj = {
  h: { g: 1, b: 1 },
  s: 0.21,
  v: 0.83
}
rygb(obj).string() // 'gb-s21-v83' 

Parser

The rygb parser will accept either a string or an object literal. When passing an object, the h property represents the hue, and must be an object with either one or two keys. Unlike the string notation, the s, v, and a values in the object notation must be decimal fractions [0-1]:

// Equivalent to 'g2b5-s31-v47-a88'
rygb({h: {g: 2, b: 5}, s: 0.31, v: 0.47, a: 0.88})

// Equivalent to 'r'
rygb({h: {r: 1}})

Serialization methods

.hex() is a perhaps the most immediately useful method when using RYGB notation for rapid prototyping.

rygb('yg').hex()  // '#80ff00'

.hexa() will give you hex code with alpha-channel information (supported in some browsers).

rygb('yg-a88').hex()  // '#80ff00e0'

rgb, rgba, and argb tuples with values as decimal fractions [0-1]:

rygb('g2b3-s31-v47').rgb().dec()  // [0.3243, 0.44086, 0.47]
rygb('g2b3-s31-v47').rgba().dec()  // [0.3243, 0.44086, 0.47, 1]
rygb('g2b3-s31-v47').argb().dec()  // [1, 0.3243, 0.44086, 0.47]

Or with 8-bit unsigned integers[0-255]:

rygb('g2b3-s31-v47').rgb().bit()  // [83, 112, 120]
rygb('g2b3-s31-v47').rgba().bit()  // [83, 112, 120, 255]
rygb('g2b3-s31-v47').argb().bit()  // [255, 83, 112, 120]

A packed integer representing an rgb color:

rygb('g2b3-s31-v47').int24()  // 5402743

Turn a JSON representation into RYGB string notation:

rygb({h: {g: 2, b: 3}, s: 31, v: 47}).string()  // 'g2b3-s31-v47'

Turn RYGB notation into a JSON representation:

rygb('g2b3-s31-v47').json()  // '{h: {g: 2, b: 3}, s: 31, v: 47}'

Usage with other tools

rygb will work with almost any JS library or framework whose constructors and/or color methods accept hex codes or css color strings. Most of them do.

In some scenarios, it may be desirable to make use of an rgb(a) tuple, or even a packed integer. For example, the .int24() method works nicely for defining a color as recommended in three.js:

import * as THREE from 'three';
import rygb from 'rygb';

var color = new THREE.Color( rygb('g2b3-s31-v47').int24() );

Although color conversions and manipulations are outside the scope of this utility, rygb can be used to supply parsable input to other packages that provide a vast array of such functionality. Popular, well-supported JS color libraries include color, one-color, chroma.js, and TinyColor.

License

MIT. See LICENSE.