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

@kongmy-dev/sapphire-ui

v2.0.3

Published

Sapphire UI is the official, editorial-focused design system for **KONGMY Digital Solutions** (`kongmy.dev`). Grounded in deep navy authority and crisp gold accents, it is engineered to be a ruthlessly efficient, zero-bloat specimen tailored for professio

Readme

Sapphire UI — Design System Spec & Components

Sapphire UI is the official, editorial-focused design system for KONGMY Digital Solutions (kongmy.dev). Grounded in deep navy authority and crisp gold accents, it is engineered to be a ruthlessly efficient, zero-bloat specimen tailored for professional IT consultancies, technical blogs (such as blog.kongmy.dev), and high-performance Web tools.

📖 Live docs & interactive specimen: design.kongmy.dev


🎨 Architectural Design System

Sapphire UI operates on a three-layer export architecture — consume it at whichever level fits your stack:

  1. CSS layer (style.css) — design tokens plus framework-agnostic component classes (.btn .btn-primary .btn-lg, .badge-success, .card card-compact, …) for plain HTML, Astro, Angular, Vue.
  2. Web Components layer (/elements) — <sapphire-toast>, <sapphire-banner>, <sapphire-site-header>, <cookie-banner> and friends; attribute-driven (including all user-facing copy for i18n), no React runtime.
  3. React layer (root export + per-component subpaths) — typed components on Radix UI primitives with CVA variants, exported *Variants for composition, and asChild polymorphism.

All three layers read from one token contract (theme.css); override a CSS custom property once and every layer follows.

graph TD
    Tokens[Design Tokens: colors_and_type.css] --> CSS[Global Styles: index.css]
    CSS --> Tail[Tailwind v4 Theme Engine]
    Tail --> ComponentSpec[React Component Library: App.tsx / App.css]
    Tail --> RawStyles[Raw compiled stylesheet: sapphire-ui.css]
    ComponentSpec --> LibExport[NPM / Github Package Export]
    RawStyles --> LibExport

1. Unified Brand Tokens

  • Primary Navy (#0a192f): Dominates headers, structural components, and deep dark regions.
  • Accent Gold (#c5a065): Reserved strictly for interactive calls to action, highlights, active lists, and thin dividers.
  • Surface Off-White (#f4f6f8): Provides clean, readable page bases that mirror professional print publications.
  • Editorial Typography: Interplays Newsreader (Georgia-fallback serif for headings) with Source Sans 3 (system-ui fallback sans-serif for UI copy) and JetBrains Mono (technical scripts).

🚀 Local Development

This project is built using Vite, TypeScript, and Tailwind CSS v4, and is managed with Bun.

Scripts & Commands

| Command | Action | |:---|:---| | bun install | Clean, cached installation of dependencies. | | bun run dev | Runs the interactive specimen viewer locally at http://localhost:5173/. | | bun run build | Compiles type declarations, bundle outputs, and minified CSS variables to dist/. | | bun run lint | Triggers ESLint validation against workspace source files. | | bun run preview | Spins up a local web server to preview production builds. |


📦 Consuming Sapphire UI

You can install Sapphire UI directly from GitHub Packages:

bun add @kongmy-dev/sapphire-ui

To consume the styles globally in your application:

import '@kongmy-dev/sapphire-ui/style.css';

Custom Elements (Astro / vanilla HTML / any framework)

Sapphire UI ships a framework-agnostic Web Components bundle. Import once to register every <sapphire-*> element — no React runtime required.

import '@kongmy-dev/sapphire-ui/style.css';
import '@kongmy-dev/sapphire-ui/elements';

Then drop the elements into any HTML environment:

<sapphire-site-header variant="dark" sticky>
  <div data-slot="brand">
    <a href="/">BRAND</a>
  </div>
  <nav data-slot="nav">
    <a href="#features">Features</a>
    <a href="#pricing">Pricing</a>
  </nav>
  <div data-slot="actions">
    <a class="sapphire-btn sapphire-btn--primary" href="/download">Download</a>
  </div>
</sapphire-site-header>

<sapphire-site-footer variant="dark">
  <div data-slot="brand">
    <h4>BRAND</h4>
    <p>Tagline.</p>
  </div>
  <div data-slot="links">
    <div>
      <span>Product</span>
      <a href="/features">Features</a>
    </div>
  </div>
  <div data-slot="bottom">
    <span>© 2026 KONGMY Digital Solutions</span>
    <span>Built with Astro · Hosted on Cloudflare</span>
  </div>
</sapphire-site-footer>

<sapphire-analytics
  posthog-token="phc_..."
  ga-id="G-..."
  domains="example.com,blog.example.com"
></sapphire-analytics>
<sapphire-toast></sapphire-toast>
<cookie-banner></cookie-banner>

Tree-shake by importing only the elements you need:

import '@kongmy-dev/sapphire-ui/site-header-element';
import '@kongmy-dev/sapphire-ui/site-footer-element';

🔗 CI/CD & Automated Publishing

Every merge or push to master triggers our automated GitHub Actions workflow (.github/workflows/publish.yml), which features:

  1. Dual-Registry Publishing: Publishes to both GitHub Packages (scoped @kongmy-dev) and the public npm registry in a single run.
  2. Node.js 24 Execution: Explicitly configured via the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 flag to utilize modern runtime performance.
  3. Advanced Caching: Caches global Bun dependency trees (~/.bun/install/cache), checking against hashes of bun.lock for lightning-fast incremental pipelines.
  4. Tag-Based Deduplication: Reads version from package.json, checks for an existing git tag, and skips the entire publish pipeline if the version has already been released.
  5. GitHub Releases: Automatically creates a tagged GitHub Release with auto-generated release notes.

Required Secrets: NPM_TOKEN — an npm access token with publish permissions. GITHUB_TOKEN is provided automatically.


🏛️ Interactive Design Catalog Specimen

When running the local environment (bun run dev), the default landing page hosts a premium, interactive spec specimen designed to aid product managers and front-end engineers:

  • Color Swatch Copier: Click any visual color cell to automatically copy its exact Hex representation or CSS variable directly to your clipboard (with modern, custom floating toast alerts).
  • Typography Playground: Enter any trial sentences inside our custom text box, and watch all serif headings, sans-serif body sizes, tracking tags, and monospace snippets re-render in real-time.
  • Component Register: Showcases interactive primary, outline, ghost buttons, custom on-dark UI variants, pill badges, and structured product layout cards.

🤖 Custom AI Skill — Adopting the Design System

The repository ships a machine-readable design spec at design/design.md. AI coding assistants — Gemini, GitHub Copilot, Claude, Cursor, or any tool that supports custom skills / instructions — can reference this file to generate UI code that stays on-brand automatically.

Why a Custom Skill?

Without explicit design context, AI tools default to generic palettes, system fonts, and arbitrary spacing. A custom skill feeds the design tokens, typography scale, component patterns, and do's/don'ts directly into the model's context, producing code that matches the Sapphire UI system on the first attempt.

Quick Setup (Gemini / Antigravity)

Create a skill folder in your global or project config:

.gemini/
  config/
    plugins/
      sapphire-ui-plugin/
        skills/
          sapphire-design/
            SKILL.md

SKILL.md — minimal example:

---
name: sapphire-design
description: >
  Enforces the Sapphire UI design system (navy + gold, editorial typography,
  anti-bloat layout) when generating or modifying front-end code.
---

# Sapphire UI Design Skill

When generating HTML, CSS, React, or Astro code for any KONGMY project,
follow the design tokens and component specifications defined in the
Sapphire UI design system.

## Design Spec Reference

Read the full token specification from the repository:

- **Tokens & Spec:** `design/design.md`
- **CSS Variables:** `design/colors_and_type.css`
- **Live Catalog:** [design.kongmy.dev](https://design.kongmy.dev)

## Key Rules

1. **Colors** — Use `--color-primary` (#0a192f), `--color-accent` (#c5a065),
   `--color-surface` (#f4f6f8). No gradients in primary UI.
2. **Typography** — Headings: `Newsreader`. Body: `Source Sans 3`.
   Code: `JetBrains Mono`. Icons: `Material Symbols Outlined`.
3. **Spacing** — 4px base grid. Section padding: `--space-24` (96px) on desktop.
4. **Shapes** — Cards: 8px radius. Buttons: 6px. Tags/badges: pill (9999px).
5. **Elevation** — Background-color contrast, not heavy shadows. Hover lift:
   `translateY(-2px)` with a crisp card shadow.
6. **Voice** — First-person singular. No emoji, no exclamation marks.

Quick Setup (Other AI Tools)

For tools that support project-level instructions (.github/copilot-instructions.md, .cursorrules, .claude/instructions.md, etc.), add the same core rules:

# Sapphire UI Design System

When generating front-end code for this project, follow these design tokens:

- Primary: #0a192f (navy) — headers, structural components
- Accent: #c5a065 (gold) — CTAs, highlights, interactive elements
- Surface: #f4f6f8 (off-white) — page backgrounds
- Headings: Newsreader (serif) | Body: Source Sans 3 | Code: JetBrains Mono
- Cards: 8px radius, 1px border, 32px padding
- Buttons: 6px radius, 12px 24px padding
- No gradients in primary UI. No heavy drop shadows.
- See `design/design.md` for the complete specification.

Consuming in Your Own Project

If you're building a new project on the Sapphire design language:

# 1. Install the package
bun add @kongmy-dev/sapphire-ui

# 2. Import the stylesheet (includes all design tokens as CSS variables)
import '@kongmy-dev/sapphire-ui/style.css';

# 3. Import components as needed
import { Button, Card, Badge } from '@kongmy-dev/sapphire-ui';

The stylesheet exports all design tokens as CSS custom properties (--color-primary, --font-serif, --space-6, etc.), so even non-React projects can consume the system by importing the CSS and applying the variables.

Tailwind v4 apps — extend your own utilities from Sapphire tokens

style.css ships a prebuilt bundle: it includes the exact utility classes Sapphire's own components use, but your Tailwind can't see its tokens, so writing your own text-text-muted / bg-primary-hover requires re-declaring tokens. Instead, import the raw token contract into your Tailwind pipeline:

/* your app's global.css */
@import 'tailwindcss';
@import '@kongmy-dev/sapphire-ui/theme.css';   /* contributes Sapphire's @theme tokens */

Now your Tailwind generates any utility referencing a Sapphire token on demand — text-text-muted, bg-primary-hover, marker:text-accent, etc. — with no token duplication, and dark-mode ([data-theme="dark"]) overrides flow through automatically. Use style.css for the components' baked styling and theme.css for your own markup; they share one source.


⚖️ License

Sapphire UI is open-source software licensed under the BSD 3-Clause License. Copyright © 2026 KONGMY Digital Solutions.