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

@beonit/adaptive-raindrop-tokens

v0.3.0

Published

Adaptive Raindrop design tokens & foundations as framework-agnostic CSS. Brand/platform/tenant tokens, shadcn token layer, Avenir Next fonts and typographic utilities.

Readme

@beonit/adaptive-raindrop-tokens

Visual foundations of Adaptive Raindrop as framework-agnostic CSS: brand/platform/tenant tokens, the shadcn token layer, the Avenir Next fonts and the typographic utilities.

It is the shared aesthetic source of truth. Any consuming app (Vue, React, etc.) consumes the same tokens, so the whole ecosystem shares one visual language without duplicating values. Adaptive Raindrop sits above the products: no product defines the system.

To migrate a React frontend to Adaptive Raindrop, read PORTING_GUIDE.md. For the normative interface rules every product must follow, read RULES.md. For the platform copilot (Sara) rules, read COPILOT.md.


What's included

src/
├── index.css           All-in-one entry (Tailwind v4).
├── tokens.css          :root brand/platform/tenant variables (agnostic).
├── shadcn-tokens.css   :root + .dark shadcn variables (agnostic).
├── theme.css           @theme inline + @custom-variant + @layer base (Tailwind v4).
├── base.css            @font-face Avenir Next + body reset + .t-* utilities.
└── assets/
    └── fonts/avenir-next/{400,600,700}.woff2

Installation

Option A — Direct from Git (no registry)

Requires read access to the package repo.

// consumer package.json
"dependencies": {
  "@beonit/adaptive-raindrop-tokens": "git+https://github.com/<org>/adaptive-raindrop.git#v0.1.0"
}

Option B — GitHub Packages (private registry)

  1. Copy .npmrc.example to .npmrc in your project and set a token with the read:packages scope.
  2. Install:
npm install @beonit/adaptive-raindrop-tokens

Usage

With Tailwind v4 (recommended)

In your root CSS, import the package after Tailwind:

@import "tailwindcss";
@import "@beonit/adaptive-raindrop-tokens";

You get:

  • CSS variables (--p-primary, --c-ink, --background, …).
  • Tailwind utilities: bg-p-primary, text-mute, shadow-card, bg-background, text-foreground, border-border, bg-sidebar, …
  • dark: bound to the .dark class on an ancestor.
  • Avenir Next fonts and the .t-h1, .t-body, .brand-fill, … utilities.

Without Tailwind

@import "@beonit/adaptive-raindrop-tokens/tokens";
@import "@beonit/adaptive-raindrop-tokens/shadcn";
@import "@beonit/adaptive-raindrop-tokens/base";

And consume the variables directly:

.cta { background: var(--p-primary); color: var(--p-primary-ink); }

Dark mode

Add the dark class to an ancestor (typically <html> or <body>):

<html class="dark">

Versioning

SemVer via git tags (v0.1.0, v0.2.0, …). Changes to token values are minor; renaming/removing tokens is major.