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

seinx-design-tokens

v1.3.13

Published

SeinX design tokens — colors, typography, spacing, fonts (Plus Jakarta Sans), and brand marks (logo, icon, favicon). Dark-first, WCAG AAA.

Readme

SeinX Design Tokens

Canonical design token set for SeinX. Dark-first, WCAG AAA body text, Plus Jakarta Sans.

Usage

CSS (drop-in)

<link rel="stylesheet" href="https://design.seinx.ai/design-tokens.css">

All tokens are CSS custom properties on :root with --sx- prefix:

body {
  background: var(--sx-smoke);
  color: var(--sx-neutral-100);
  font-family: var(--sx-font-family);
}

npm

npm install seinx-design-tokens
import tokens from 'seinx-design-tokens';
console.log(tokens.color.core.signal.$value); // "#3ddc84"

Fonts (v1.1.0+)

Plus Jakarta Sans is bundled as a variable woff2 (upright + italic). Import the @font-face declarations:

@import 'seinx-design-tokens/fonts';          /* declares Plus Jakarta Sans */
@import 'seinx-design-tokens/tokens.css';     /* provides --sx-font-family */

This is the authoritative source for the brand font. Consumers should not import fonts from other downstream SeinX packages.

Branding (v1.2.0+)

Canonical brand marks ship in dist/branding/:

| File | Use | Size | |------------------|---------------------------------------------------------------|---------| | logo.svg | Wordmark — headers, footers | ~2 KB | | icon.svg | Standalone X — app icon, social cards | ~380 KB | | favicon.svg | Browser tab favicon, rounded square | <1 KB | | og-en.png | Open Graph card (EN), 1200×630 (OG spec) | ~580 KB | | og-nl.png | Open Graph card (NL), 1200×630 (OG spec) | ~580 KB | | og-canvas.png | Frozen canvas raster — backdrop source for OG / icon | ~1.9 MB |

Import via subpath:

import logoUrl from 'seinx-design-tokens/branding/logo.svg?url';
import ogEnUrl from 'seinx-design-tokens/branding/og-en.png?url';

Or copy at build time:

cp node_modules/seinx-design-tokens/dist/branding/* public/

Vector marks use real Plus Jakarta Sans ExtraBold glyph outlines (no font references — fully self-contained SVGs). Source-of-truth in src/branding/. Maintainers regenerate via node src/branding/generate.mjs (requires devDependencies + macOS sips).

JSON (fetch)

const tokens = await fetch('https://design.seinx.ai/design-tokens.json').then(r => r.json());

Token Format

Source uses the W3C Design Tokens Community Group (DTCG) format.

Development

node src/build.js    # validate + generate dist/

Visual Reference

See the specimen at design.seinx.ai.

License

MIT for tokens. Plus Jakarta Sans is under the SIL Open Font License.