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

@stigmer/theme

v3.1.17

Published

Design tokens, CSS custom properties, and utility functions for Stigmer UI components

Readme

@stigmer/theme

Design tokens, color presets, and utilities for Stigmer UI components.

Install

npm install @stigmer/theme

Peer dependencies: clsx, tailwind-merge

Tokens

Import the base token stylesheet to get all Stigmer design variables (light and dark mode):

@import "@stigmer/theme/tokens.css";

This defines CSS custom properties on :root (light) and [data-stgm-color-mode="dark"] (dark mode). All properties use the --stgm-* namespace to avoid collisions with host application styles.

Token Reference

The complete token contract — every token with its purpose, light/dark defaults, and swatches — is documented at stigmer.ai/docs/sdk/theme/tokens. That reference is generated directly from src/tokens.css, so it can never drift from the shipped values. The token groups:

  • Typography--stgm-font-sans, --stgm-font-mono
  • Shape--stgm-radius (the whole radius scale derives from it)
  • Core surfaces & text — background/foreground, card, popover, primary, secondary, muted, accent (each with its -foreground pair)
  • Semantic colors — destructive, success, warning, info
  • Forms & focus — border, input, input-bg, ring
  • Charts — 5 categorical series + named chart colors
  • Emphasis & elevation — prominent borders, shadow scale
  • Motion & layering — transition duration/easing, popover z-index
  • State shades — hover/subtle/muted/faint variants of the core colors
  • Sidebar — a self-contained token context for contrasting sidebars
  • Status — ready/running/pending/degraded/failed/disabled/draft, each with -foreground and -subtle
  • Diff viewer and Syntax highlighting token sets

Default token values are contrast-audited in CI: src/contract/ measures every declared text/surface pairing (WCAG 2.1 AA for text, a documented lightness-delta floor for borderless surfaces) across all presets and both color modes. Run npx tsx scripts/contrast-report.ts in this package to see the full matrix.

Design Language Presets

Stigmer ships with 6 design language presets. Each represents a real-world product category's visual DNA — not just a color swap, but a complete design language with different border radius, surface treatments, border styles, sidebar appearance, and color palette.

| Preset | Archetype | Import | CSS Class | |--------|-----------|--------|-----------| | Default | Stigmer's own identity | (built-in) | (none) | | Corporate | Enterprise SaaS (Azure, Salesforce) | @stigmer/theme/presets/corporate.css | stgm-theme-corporate | | Startup | Dev tools (Linear, Vercel) | @stigmer/theme/presets/startup.css | stgm-theme-startup | | Friendly | Consumer SaaS (Notion, Intercom) | @stigmer/theme/presets/friendly.css | stgm-theme-friendly | | Fintech | Premium financial (Stripe, Mercury) | @stigmer/theme/presets/fintech.css | stgm-theme-fintech | | Monochrome | Editorial black-and-white (Linear, Notion) | @stigmer/theme/presets/monochrome.css | stgm-theme-monochrome |

Each preset overrides most of the token surface — radius, surface colors, borders, sidebar, and accent palette — for both light and dark modes, and falls through to the defaults for anything it leaves alone (Monochrome deliberately keeps the semantic status colors). The full per-preset override tables are at stigmer.ai/docs/sdk/theme/presets.

Using a Preset

  1. Import the base tokens and the preset CSS:
@import "@stigmer/theme/tokens.css";
@import "@stigmer/theme/presets/corporate.css";
  1. Add the preset class to a root element:
<html class="stgm-theme-corporate">

Dark mode is controlled by the data-stgm-color-mode attribute, which StigmerProvider sets automatically from its colorMode prop. Preset dark tokens activate when data-stgm-color-mode="dark" is present on the same element or an ancestor.

  1. All components consuming --stgm-* variables automatically pick up the new colors.

Preset Metadata (TypeScript)

The preset list is available as a typed constant for building UI selectors:

import { THEME_PRESETS } from "@stigmer/theme";
// or
import { THEME_PRESETS } from "@stigmer/theme/presets";

// THEME_PRESETS is an array of:
// { id: string, name: string, className: string, description: string, swatch: string }

Custom Theming

You can create your own theme by overriding --stgm-* variables. Only override the tokens you want to change — everything else falls through to the defaults.

.my-custom-theme {
  --stgm-primary: oklch(0.6 0.2 220);
  --stgm-primary-foreground: oklch(0.985 0 0);
  --stgm-ring: oklch(0.55 0.15 220);
  --stgm-sidebar-primary: oklch(0.6 0.2 220);
  --stgm-sidebar-primary-foreground: oklch(0.985 0 0);
  --stgm-sidebar-ring: oklch(0.55 0.15 220);
}

.my-custom-theme[data-stgm-color-mode="dark"],
[data-stgm-color-mode="dark"] .my-custom-theme {
  --stgm-primary: oklch(0.75 0.18 220);
  --stgm-primary-foreground: oklch(0.145 0 0);
  --stgm-sidebar-primary: oklch(0.75 0.18 220);
  --stgm-sidebar-primary-foreground: oklch(0.145 0 0);
  --stgm-sidebar-ring: oklch(0.5 0.12 220);
}

Apply via className on StigmerProvider:

<StigmerProvider client={client} className="my-custom-theme" colorMode="dark">
  {children}
</StigmerProvider>

What a Full Preset Overrides

A complete design language preset overrides most of the token surface:

  • Shape: --stgm-radius (sharp 0.125rem in Fintech to very rounded 1.25rem in Friendly)
  • Surfaces: --stgm-background, --stgm-card, --stgm-popover, --stgm-muted, --stgm-secondary, --stgm-accent
  • Text: --stgm-foreground, --stgm-card-foreground, --stgm-muted-foreground, etc.
  • Accent: --stgm-primary / --stgm-primary-foreground, --stgm-ring
  • Borders: --stgm-border, --stgm-input
  • Sidebar: --stgm-sidebar, --stgm-sidebar-primary, --stgm-sidebar-accent, --stgm-sidebar-border
  • Charts: --stgm-chart-1 through --stgm-chart-5

You can also create minimal presets that override only a subset of tokens.

If your preset defines a token in its light block, define its dark value too: preset-light declarations outrank the default dark block in the cascade, so a light-only override would leak into dark mode. The theme package's contract tests flag this automatically for built-in presets.

Color Format

All built-in tokens use OKLCH for perceptually uniform color manipulation. You can use any CSS color format in your overrides.

Utilities

cn() — Class Name Merge

Combines class names with Tailwind conflict resolution (powered by clsx + tailwind-merge):

import { cn } from "@stigmer/theme";

<div className={cn("px-4 py-2", isActive && "bg-primary text-primary-foreground")} />

Exports

| Export | Content | |--------|---------| | @stigmer/theme | cn(), ClassValue, THEME_PRESETS, ThemePreset | | @stigmer/theme/tokens.css | Base CSS custom properties (light + dark) | | @stigmer/theme/presets | THEME_PRESETS array and ThemePreset type | | @stigmer/theme/presets/corporate.css | Corporate (Enterprise SaaS) design language | | @stigmer/theme/presets/startup.css | Startup (Modern dev tools) design language | | @stigmer/theme/presets/friendly.css | Friendly (Consumer SaaS) design language | | @stigmer/theme/presets/fintech.css | Fintech (Premium financial) design language | | @stigmer/theme/presets/monochrome.css | Monochrome (Editorial black-and-white) design language |

License

Apache-2.0