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

@frequencyads/brand

v1.1.2

Published

Frequency brand tokens, colors, typography, and theme configurations

Readme

@frequencyads/brand

Official Frequency brand tokens, colors, typography, and theme configurations.

Installation

npm install @frequencyads/brand

Usage

Full Package

import { colors, fonts, frequencyTheme, brand } from '@frequencyads/brand';

console.log(colors.primary.main); // #169BDE
console.log(fonts.heading.family); // Montserrat, sans-serif

Mantine Theme

import { MantineProvider } from '@mantine/core';
import { frequencyTheme } from '@frequencyads/brand/mantine';

function App() {
  return <MantineProvider theme={frequencyTheme}>{/* Your app */}</MantineProvider>;
}

Colors Only

import { colors, mantineColors } from '@frequencyads/brand/colors';

// Hex colors
console.log(colors.primary.main); // #169BDE
console.log(colors.secondary.main); // #7E57C2

// Mantine color tuples
console.log(mantineColors.frequency); // ['#E3F2FD', ..., '#0A3D7A']

Typography Only

import { fonts, fontSizes, headingStyles } from '@frequencyads/brand/typography';

console.log(fonts.heading.family); // Montserrat, sans-serif
console.log(fonts.body.family); // Source Sans 3, Source Sans Pro, sans-serif

Color Palette

| Name | Hex | Usage | | ------------- | ------- | ------------------------- | | Primary | #169BDE | Main brand color | | Primary Light | #73C3EB | Hover states, backgrounds | | Primary Dark | #0B5A9F | Active states, emphasis | | Secondary | #7E57C2 | Accent color | | Raspberry | #E63459 | Error states | | Gold | #E79E26 | Warning states | | Mint | #5AB267 | Success states |

Typography

  • Headings: Montserrat (400, 500, 600, 700)
  • Body: Source Sans 3 (400, 600)

Module Logos

Stencil SVGs for the Frequency module logos live in assets/module-logos/svg/. Each file is a single compound path (fill-rule="evenodd") — the circle is filled, the icon shape is a transparent cutout. Color is applied entirely via CSS (mask-image + background), so solid colors and gradients both work without modifying the SVG.

Consumers import the markup as inlined strings from @frequencyads/brand/module-logos (accountSvg, catalogSvg, …). The strings are generated from the SVG files by scripts/generate-module-logo-strings.mjs, which runs automatically on build/dev. This avoids any bundler-specific ?raw import, so the logos render identically under Vite, webpack, Turbopack, and during SSR.

Adding a new icon: if the source SVG is already in stencil format, copy it straight to assets/module-logos/svg/ and add its name to NAMES in scripts/generate-module-logo-strings.mjs. If it uses a filled-circle + coloured-paths layout instead, run the optional conversion script first:

pnpm --filter @frequencyads/brand build-stencil-logos

Source SVGs (input to the script) are gitignored — only the output stencils are committed.

License

MIT