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

@stackline/color

v1.0.0

Published

A tiny, framework-agnostic color picker foundation for modern web applications.

Readme

@stackline/color

A maintained framework-agnostic color picker foundation for modern web applications, with a precise TypeScript color engine, a lightweight vanilla UI layer, and a documentation site centered on a live playground.

license TypeScript Build Docs Zero Runtime Deps

Documentation & Playground | npm | GitHub Download | Issues | Repository

Latest version: 1.0.0


Why this library?

Most color picker packages solve the visible UI, but not always the long-term foundation:

  • pure color parsing and conversion are often coupled too tightly to one framework
  • APIs can feel heavier than they need to for simple DOM use
  • accessibility, keyboard support, and alpha handling are not always polished
  • future wrappers often end up re-implementing the engine instead of sharing one core

@stackline/color is built as a clean TypeScript-first foundation package. The core stays framework-agnostic, the vanilla DOM layer stays light, and future React, Vue, and Angular wrappers can reuse the same engine instead of replacing it.

Version 1.0.0 marks the stable baseline for the core color engine, vanilla picker, TypeScript types, browser bundle, and generated documentation.

Features

| Feature | Supported | | :--- | :---: | | TypeScript-first core library | ✅ | | Framework-agnostic runtime | ✅ | | ESM + CJS + bundled types | ✅ | | Zero runtime dependencies | ✅ | | 2D saturation/value area | ✅ | | Hue slider | ✅ | | Alpha slider | ✅ | | HEX, RGB, HSL, and HSV input support | ✅ | | Rich normalized color snapshots | ✅ | | Keyboard and pointer interaction | ✅ | | CSS variable theming | ✅ | | Mobile-friendly pointer events | ✅ | | Documentation site with live playground | ✅ | | Future wrapper-ready architecture | ✅ |

Table of Contents

  1. Installation
  2. Direct Download
  3. Quick Start
  4. API Overview
  5. Color Snapshot Output
  6. Customization
  7. Accessibility and Interaction
  8. Documentation and Playground
  9. Run Locally
  10. License

Installation

npm install @stackline/color

Direct Download

If you prefer plain JavaScript instead of npm, download the browser bundle from GitHub:

The archive includes color.browser.js and exposes window.StacklineColor.

<div id="picker"></div>
<script src="./color.browser.js"></script>
<script>
  const picker = StacklineColor.createColorPicker({
    el: "#picker",
    color: "#7c3aed",
    hue: true,
    alpha: true
  });

  console.log(picker.getColor().hex);
</script>

Quick Start

import { createColorPicker } from "@stackline/color";

const picker = createColorPicker({
  el: "#picker",
  color: "#7c3aed",
  hue: true,
  alpha: true,
  onChange: (color) => {
    console.log(color.hex, color.rgb, color.hsl);
  }
});

API Overview

The package is centered around a small public surface:

import {
  createColorPicker,
  createColorSnapshot,
  formatColor,
  parseColor
} from "@stackline/color";

Core runtime capabilities:

  • createColorPicker(options) mounts a picker into a selector or DOM element
  • picker.getColor() returns the current normalized snapshot
  • picker.setColor(input) updates from HEX, RGB, HSL, HSV, or structured color input
  • picker.update(options) changes runtime options such as alpha, hue, or labels
  • picker.destroy() removes the picker cleanly

Useful core helpers:

  • parseColor(input)
  • createColorSnapshot(hsva)
  • formatColor(input, format)
  • hexToRgba(value)
  • rgbaToHex(value, includeAlpha?)
  • rgbaToHsva(value)
  • hsvaToRgba(value)
  • hsvaToHsla(value)
  • hslaToHsva(value)

Color Snapshot Output

Every color change returns a normalized snapshot:

{
  hex: "#7c3aed",
  hexa: "#7c3aedff",
  rgb: { r: 124, g: 58, b: 237 },
  rgba: { r: 124, g: 58, b: 237, a: 1 },
  hsl: { h: 262, s: 83, l: 58 },
  hsla: { h: 262, s: 83, l: 58, a: 1 },
  hsv: { h: 262, s: 76, v: 93 },
  hsva: { h: 262, s: 76, v: 93, a: 1 },
  alpha: 1
}

Customization

The default UI is intentionally minimal and controlled through CSS variables.

Size is customizable too, so the picker can scale from compact utility usage to roomier settings panels.

.my-picker {
  --rv-color-max-width: 360px;
  --rv-color-panel-height: 256px;
  --rv-color-slider-height: 18px;
  --rv-color-handle-size: 20px;
  --rv-color-line-handle-width: 16px;
  --rv-color-line-handle-height: 26px;
  --rv-color-radius: 18px;
  --rv-color-focus: #0f766e;
  --rv-color-surface: #f8fafc;
}

If you prefer to manage styles yourself, disable auto-injection:

createColorPicker({
  el: "#picker",
  injectStyles: false
});

Then inject the exported base styles manually:

import { COLOR_PICKER_STYLES } from "@stackline/color";

Accessibility and Interaction

The vanilla picker already ships with practical defaults:

  • keyboard support for the main area, hue slider, and alpha slider
  • visible :focus-visible outlines
  • role="slider" with descriptive aria-valuetext
  • pointer events for mouse, touch, and pen
  • mobile-friendly interaction without extra runtime dependencies

Documentation and Playground

The docs site includes:

  • a live playground as the main entry
  • installation and quick start guidance
  • API usage examples
  • real vanilla setup code
  • live snapshot output and theming examples

Docs: https://alexandro.net/docs/vanilla/color/

Run Locally

npm install
npm run build:all

Verification:

npm run typecheck
npm test

Minimal browser example:

License

MIT