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

@cinchme/brand

v0.1.1

Published

Canonical Cinch identity tokens, marks, and React primitives.

Downloads

243

Readme

Cinch brand

Canonical identity primitives for Cinch. This package intentionally contains only the logo, wordmark treatment, color tokens, and browser icon assets. Product UI components do not belong here.

Install

npm install @cinchme/brand

React

import { CinchCssLockup, CinchLockup, CinchMark } from "@cinchme/brand/react";
import "@cinchme/brand/tokens.css";
import "@cinchme/brand/styles.css";

export function AppHeader() {
  return <CinchLockup size={34} />;
}

export function AppIcon() {
  return <CinchMark size={24} label="Cinch" />;
}

export function SvgFreeHeader() {
  return <CinchCssLockup size={34} />;
}

Use tone="dark" on dark surfaces. Omit label when adjacent text already names Cinch; the mark then renders as decorative.

CinchMark and CinchLockup use the canonical vector geometry. CinchCssMark and CinchCssLockup reproduce the identity with CSS borders for surfaces that intentionally avoid inline SVG.

Framework-neutral usage

Import @cinchme/brand/tokens.css and use the packaged assets:

  • @cinchme/brand/assets/mark.svg
  • @cinchme/brand/assets/mark-on-dark.svg
  • @cinchme/brand/assets/favicon.png
  • @cinchme/brand/assets/apple-touch-icon.png

Brand contract

  • Ink: #191d2c
  • Paper: #f4f2ec
  • Logo violet: #6467f2
  • Interface violet: #5d5fde
  • Recommended mark sizes: 16, 24, 32, 64, and 180 pixels

brand.json is the reviewable contract. Tests keep the JavaScript exports, CSS tokens, vector geometry, and browser icon dimensions aligned with it.

Release discipline

The package remains in the 0.x range while the identity is evolving. Every visual change should:

  1. update brand.json and the affected assets;
  2. run npm run check;
  3. increment the package version;
  4. publish one immutable version;
  5. update the app and marketing repositories through normal dependency PRs.