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

@ringer-tel/tokens

v0.3.1

Published

Ringer design tokens — CSS variables, fonts, logo assets. Framework-agnostic.

Readme

@ringer-tel/tokens

Design tokens for the Ringer unified aesthetic. CSS variables, font @imports, density utilities, and the canonical 8-file logo set.

Usage

@import '@ringer-tel/tokens/fonts.css';
@import '@ringer-tel/tokens/tokens.css';
@import '@ringer-tel/tokens/density.css';
@import '@ringer-tel/tokens/editorial.css';  /* optional — `.text-eyebrow`, `.text-display-{lg,md}` */

To prevent FOUC on theme resolution, inline theme-resolve.ts into your document head as the very first script.

Theme selector

Dark mode is keyed on a data-theme="dark" attribute on <html> (set by theme-resolve.ts). The tailwind preset's darkMode is configured as ['class', '[data-theme="dark"]'] so a legacy class="dark" toggle ALSO works, but data-theme="dark" is the canonical mechanism going forward. Don't mix the two on the same surface.

What it ships

  • fonts.css — Kumbh Sans (Google Fonts import) + IBM Plex Mono.
  • tokens.css — light + dark CSS variables (--ringer-*, semantic --primary, --surface, --card, --muted, --popover, --input, --secondary, etc.). v0.1.2 added the shadcn-canonical surface aliases (card/muted/popover/input/secondary + foregrounds) so bg-card, bg-muted, etc. Just Work.
  • density.css.density-portal / .density-marketing class helpers.
  • editorial.css.text-eyebrow and .text-display-{lg,md} editorial utility classes (optional import).
  • theme-resolve.ts — synchronous theme resolver to set data-theme before first paint.
  • logo/ — 8 brand logo files (4 variants × 2 formats). See logo/README.md.

HSL-channel vars (v0.3.0)

Every flat-color semantic var ships a parallel -hsl sibling:

--foreground: var(--ringer-black);   /* #231F20 — raw color, valid in `color:` rules */
--foreground-hsl: 345 6.1% 12.9%;     /* HSL channels, for Tailwind slash-opacity */

The @ringer-tel/tailwind-preset colors map references the -hsl siblings via hsl(var(--{name}-hsl) / <alpha-value>), so bg-foreground/75, bg-ringer-aqua/10, etc. compose at the expected alpha. Consumers reading the unsuffixed vars directly (e.g. style={{ color: 'var(--foreground)' }}, inline SVG fills) continue to see the canonical hex value — the -hsl form is for the Tailwind pipeline only.