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

@mt-gloss/brand

v0.1.159

Published

The VersaTrade brand as importable data and React components — colors, type scale, motion, layout, taglines, doctrine, and the logo system.

Readme

@mt-gloss/brand

The VersaTrade brand as importable data and React components — colors, type scale, motion, layout, taglines, doctrine, and the logo system.

Code leads (ruling 18 Aug 2026): brand decisions originate in VTStudio (apps/workbench · branding/vt_studio) and are documented in the Figma brand book. This package is the distributable form of what has been decided — exploration and alternate directions are deliberately not shipped.

Tokens

import { neutral, accent, semantic, canvas, dataViz } from '@mt-gloss/brand';

neutral[950];        // '#1F1611' — warm ink
accent[600];         // '#D60029' — the accent for text/UI on light surfaces
accent.base;         // '#FF2D55' — the authored artwork hex
canvas.page;         // '#FAF7F2' — cream ground
dataViz.categorical; // browns first, semantics after; accent never rotates
import { typeScale, fontFamilies, durations, spacing, radii, elevation } from '@mt-gloss/brand';

Voice & doctrine

import { taglines, coreTagline, brandRules } from '@mt-gloss/brand';

coreTagline; // 'AI feeds the work. Humans do the work.'
brandRules;  // the locked rules (never-brown, slash-always-accent, accent budget, semantic reserve)

Logo system

import { HERO_MARK, SLASH, logoTreatments, logoSizing, recolorHeroMark } from '@mt-gloss/brand';

HERO_MARK.inner is the authored SVG geometry with two sentinel fills; recolorHeroMark(wordmark, slash) produces any treatment. logoSizing carries clear space (one slash width on all sides) and minimum sizes.

Typography components

import { Text, Display, Heading, Body, Eyebrow, Metric, MonoLabel } from '@mt-gloss/brand';

<Display>AI feeds the work.</Display>          // h1 · Display/28 Bold
<Heading size="m">Section title</Heading>      // h3 · Heading M/20 SemiBold
<Body size="l">Lede paragraph…</Body>          // p  · Body L/15
<Eyebrow>Sales YTD</Eyebrow>                   // uppercase card label
<Metric>$127,450</Metric>                      // JetBrains Mono 22 Bold
<Text variant="chip" as="div">Primary</Text>   // any variant, any element

Thirteen variants mirror typeScale exactly; textStyleCss(variant) returns the same style as a plain CSS object for non-React use. Color inherits by default; margins are reset.

Logo & slash components

import { Logo, Slash, AppIcon, SlashHighlight } from '@mt-gloss/brand';

<Logo height={32} />                     // primary treatment
<Logo treatment="reverse" height={24} /> // for dark surfaces
<AppIcon size={32} />                    // the slash roundel — avatars, favicons
<Slash size={24} />                      // the gesture, accent by default
<SlashHighlight>humans</SlashHighlight>  // slash-angled text emphasis (spends the accent budget)

Rules the components enforce by default: the logo is never brown; the slash is always accent (mono treatments are the sole, named exceptions); one accent per viewport is on you.