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

@zaemoru/tokens

v0.2.0

Published

Framework-independent design tokens (CSS variables) for zaemoru.

Readme

@zaemoru/tokens

Framework-independent design tokens for the zaemoru design system.

This package has no React dependency and no Lit dependency. It exposes CSS variables for web UI and a tiny JS color map for places that need plain color values.

Install

pnpm add @zaemoru/tokens

Usage

Import the CSS once at the root of your app.

Plain HTML

<link rel="stylesheet" href="/node_modules/@zaemoru/tokens/dist/index.css" />

Bundlers (Vite, webpack, Next.js, ...)

import "@zaemoru/tokens";
// or
import "@zaemoru/tokens/index.css";

JavaScript colors

import { colors, colorCssVars } from "@zaemoru/tokens/colors";

const solidBlue = colors.blue500; // "#3182f6"
const semanticText = colors.text; // "#191f28"
const cssVariable = colorCssVars.primary; // "var(--zm-color-primary)"

What's inside

The package declares variables and JS values for:

  • Color palette — colors.grey50, colors.blue500, colors.red500, colors.green500, ... plus CSS variables such as --zm-color-blue-500.
  • Semantic color aliases — colors.primary, colors.background, colors.text, colors.border, danger / success / warning, ...
  • Typography — --zm-font-family-base, --zm-font-size-{xs,sm,md,lg,xl,2xl,3xl,4xl}, weights, line heights.
  • Spacing — --zm-spacing-{0..10} on a 4px scale.
  • Radius — --zm-radius-{sm,md,lg,xl,pill}.
  • Shadow — elevation + focus-ring.
  • Z-index — overlay / modal / toast / tooltip layers.
  • Animation — --zm-duration-fast, easings, with a prefers-reduced-motion override.

Example

.my-card {
  background: var(--zm-color-surface);
  color: var(--zm-color-text);
  border-radius: var(--zm-radius-lg);
  padding: var(--zm-spacing-6);
  box-shadow: var(--zm-shadow-sm);
}