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

@unbranded-ds/tokens

v0.6.0

Published

Design tokens for the unbranded-ds design system: DTCG-format JSON sources compiled via Style Dictionary to CSS variables, a Tailwind v4 @theme preset, JSON, and a typed TypeScript token map.

Readme

@unbranded-ds/tokens

Design tokens for the unbranded-ds design system. W3C DTCG-format JSON sources compiled via Style Dictionary into CSS variables, a Tailwind v4 @theme preset, JSON, and a typed TypeScript token map.

Quickstart

In any Tailwind v4 project, add two lines to your global stylesheet:

@import 'tailwindcss';
@import '@unbranded-ds/tokens/preset.css';

That registers the design-system Tailwind utilities backed by CSS variables (such as bg-primary and rounded-md). The @theme inline block in the preset is registration-only — it tells Tailwind the utility names exist, but does not set their values. Bring in default theme values by importing a theme file:

@import '@unbranded-ds/tokens/themes/light.css';
@import '@unbranded-ds/tokens/themes/dark.css';

Themes compose across three axes. A color scheme (light/dark) is applied through data-color-scheme, an aesthetic identity (palette, type, shadows) through data-theme, and a density (spacing, line-height) through data-density. Import the cells you reach and apply the attributes together. Here the vaporwave identity in dark meets compact's tighter spacing:

@import '@unbranded-ds/tokens/themes/vaporwave-dark.css';
@import '@unbranded-ds/tokens/themes/compact.css';
<html data-color-scheme="dark" data-theme="vaporwave" data-density="compact"></html>

The page resolves to the union of the three. Later cascade layers win a collision — an identity over the color-scheme base, density over both. Each identity ships a cell per scheme (brand-light, brand-dark, vaporwave-light, vaporwave-dark), so a palette only lands when its color scheme is also set. See THEMING.md for the merge rules and a worked example.

Or override token values directly in your own :root:

:root {
	--color-primary: oklch(0.5 0.2 240);
}

Consumer overrides win by cascade order, not by selector specificity. No specificity battles.

What's in the package

  • Tailwind v4 preset (./preset.css) that registers token-backed utilities
  • Built-in themes — the color schemes light and dark, the identities brand and vaporwave (a cell per scheme), and the compact density (./themes/<name>.css)
  • Runtime helpers (./runtime): registerTheme, validateTheme, themeBootstrapScript, getThemeBootstrapScript
  • Typed TypeScript token map (default export)
  • Raw JSON token output (./dist/json/* for cross-platform consumers)

Preventing flash-of-wrong-theme

Theme-aware apps benefit from a tiny script in <head> that applies the saved theme before first paint. Import the canonical helper:

import { themeBootstrapScript } from '@unbranded-ds/tokens/runtime';

export default function RootLayout({ children }) {
	return (
		<html>
			<head>
				<script dangerouslySetInnerHTML={{ __html: themeBootstrapScript }} />
			</head>
			<body>{children}</body>
		</html>
	);
}

It reads the per-axis keys from storage — unbranded-ds-color-scheme, unbranded-ds-theme, and unbranded-ds-density — and applies data-color-scheme, data-theme, and data-density to the document root before first paint, falling back to light / default / comfortable when storage is empty or blocked. The color-scheme key always holds a concrete value, never system, so the bootstrap never has to touch matchMedia.

Non-default fallbacks

When your default color scheme is dark (museum kiosks, theater apps, video editors, sleep apps), or you want a non-default starting identity or density, reach for the factory:

import { getThemeBootstrapScript } from '@unbranded-ds/tokens/runtime';

const bootstrap = getThemeBootstrapScript({ defaultColorScheme: 'dark' });

export function BootstrapScript() {
	return <script dangerouslySetInnerHTML={{ __html: bootstrap }} />;
}

The factory's output is deterministic across builds for any given options object (defaultColorScheme, defaultTheme, defaultDensity) — consumers using SHA hash-based Content Security Policies can compute the hash once and trust it.

When to reach for which

  • Use themeBootstrapScript (the constant) when the defaults are light / default / comfortable. One import, one inline tag.
  • Use getThemeBootstrapScript({ ... }) (the factory) when any axis starts somewhere else.

Both read the same per-axis localStorage keys. Neither validates the saved values — if storage holds a value with no matching theme CSS, the page renders without those CSS variables until JS loads and a valid theme is registered. Validation belongs at runtime in useTheme(), not in the bootstrap script.

Content Security Policy

Under a strict CSP that forbids script-src 'unsafe-inline', attach a nonce to the <script> element to match your CSP nonce:

import { themeBootstrapScript } from '@unbranded-ds/tokens/runtime';
import { headers } from 'next/headers';

export default async function RootLayout({ children }) {
	const nonce = (await headers()).get('x-nonce') ?? undefined;
	return (
		<html>
			<head>
				<script
					nonce={nonce}
					dangerouslySetInnerHTML={{ __html: themeBootstrapScript }}
				/>
			</head>
			<body>{children}</body>
		</html>
	);
}

For hash-based CSP (SHA-256 allowlist), the factory's deterministic output means you compute the hash once at build time and add it to your CSP header. The bootstrap script body wraps itself in a try/catch for browsers where localStorage access throws (private browsing, sandboxed iframes).

A cookie-based server-rendered alternative — applying data-theme from a server-readable cookie so no inline script runs — is a roadmap item documented in THEMING.md. For now, the inline-script path covers all consumers.

Migrating from 0.1.0

The ./dist/tailwind/* and ./dist/css/* wildcard exports are removed in 0.2.0. Two consumer-side concerns:

Import paths. Replace the old dist/... paths with the clean aliases:

- @import '@unbranded-ds/tokens/dist/tailwind/preset.css';
+ @import '@unbranded-ds/tokens/preset.css';
- @import '@unbranded-ds/tokens/dist/css/tokens-light.css';
+ @import '@unbranded-ds/tokens/themes/light.css';

FOUC script. If you previously copy-pasted the inline bootstrap script from THEMING.md, switch to the canonical export:

- <script dangerouslySetInnerHTML={{
-   __html: "(function(){var t=localStorage.getItem('ds-theme')||'light';document.documentElement.setAttribute('data-theme',t)})()"
- }} />
+ import { themeBootstrapScript } from '@unbranded-ds/tokens/runtime'
+ <script dangerouslySetInnerHTML={{ __html: themeBootstrapScript }} />

The localStorage key changes from ds-theme to unbranded-ds-theme. Users with the old key saved see the default theme on their first 0.2.0 load — their saved preference falls back to default.

Theming

See THEMING.md for the full theming contract — writing themes, validating them, applying them at runtime, preventing FOUC, and the design-space discussion of inline-script versus cookie-based-SSR approaches.

License

MIT.