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 🙏

© 2026 – Pkg Stats / Ryan Hefner

tonal-oklch

v0.1.3

Published

A hybrid color space pairing OKLCh perceptual hue & chroma with CIE L* guaranteed WCAG contrast. Colors at the same tone always have identical contrast ratios.

Readme

tonal-oklch

npm

A hybrid color space pairing OKLCh's perceptual hue & chroma with CIE L*'s guaranteed WCAG contrast.

Colors at the same tone are guaranteed to have identical WCAG contrast ratios against any background — regardless of hue or chroma.

Install

npm install tonal-oklch

Usage

import { tonalOklchToResult, tonalOklchToRgb, rgbToTonalOklch } from 'tonal-oklch';

// Convert a Tonal OKLCh color → sRGB
const result = tonalOklchToResult({ tone: 65, chroma: 0.15, hue: 264 });
console.log(result.hex);    // e.g. "#8b7cc8"
console.log(result.tone);   // 65 (preserved exactly)

// Quick conversion (returns { r, g, b } in 0–1)
const rgb = tonalOklchToRgb({ tone: 65, chroma: 0.15, hue: 264 });

// Reverse: sRGB → Tonal OKLCh
const tonal = rgbToTonalOklch(0.55, 0.49, 0.78);
console.log(tonal.tone);    // CIE L* lightness

API

tonalOklchToResult(color: TonalOklch): TonalOklchResult

Full conversion with metadata — returns sRGB (float + 8-bit), hex, final OKLCh coordinates, and tone.

tonalOklchToRgb(color: TonalOklch): SrgbColor

Convenience wrapper returning { r, g, b } in 0–1.

tonalOklchToOklch(color: TonalOklch): { l, c, h }

Returns gamut-mapped OKLCh coordinates. Tone is preserved exactly; chroma is reduced only as needed.

rgbToTonalOklch(r, g, b): TonalOklch

Reverse conversion from sRGB (channels 0–1) to Tonal OKLCh.

Low-level exports

  • cieLstarToY / yToCieLstar — CIE L* ↔ Y conversions
  • wcagLuminance / wcagContrast — WCAG 2.1 utilities
  • findLForTargetY — binary search solver for OKLCh L
  • gamutMapWithTonePreservation — chroma reduction with exact tone

How it works

  1. Tone → Y: CIE L* is converted to CIE Y (≡ WCAG relative luminance)
  2. Solve L: Binary search finds the OKLCh lightness that produces the target Y at the given chroma & hue
  3. Gamut map: If the color is outside sRGB, chroma is reduced while re-solving L at every step — tone is never stale
  4. Nudge: 8-bit quantization is refined by ±1 per channel to minimize luminance drift

License

MIT