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

@labmgm/styles

v0.1.0

Published

Tailwind preset and base CSS for the MGM Laboratory Design System. Builds on `@labmgm/tokens` and ships self-hosted Geist + Bricolage Grotesque + Geist Mono with brand-spec defaults.

Readme

@labmgm/styles

Tailwind preset + base CSS for the MGM Laboratory Design System.

Install

pnpm add @labmgm/styles @labmgm/tokens tailwindcss

Use

Tailwind preset

// tailwind.config.ts
import type { Config } from "tailwindcss";
import preset from "@labmgm/styles";

export default {
  presets: [preset],
  content: ["./src/**/*.{ts,tsx,html,mdx}"],
} satisfies Config;

Base CSS

/* app/globals.css */
@import "@labmgm/styles/base.css";
@tailwind base;
@tailwind components;
@tailwind utilities;

@labmgm/styles/base.css pulls in:

  • The light + dark theme CSS variables from @labmgm/tokens.
  • Self-hosted Geist + Bricolage Grotesque + Geist Mono @font-face declarations.
  • A reset layered on top of Tailwind's preflight: visible focus ring, brand-coloured ::selection, body/ink defaults.
  • Pattern positioning helpers — pattern-corner-* classes and a pattern-dado utility for the 8 px alternating footer band (brand spec §7.8).

Brand-spec behaviours baked into the preset

  • prefers-reduced-motion: reduce is honoured globally — animations collapse to ~0 ms, transitions too, smooth-scroll disabled. (Brand spec §6.4.)
  • darkMode is configured for [data-theme='dark'] so <html data-theme="dark"> lights up every dark: utility.
  • Custom utilities: tabular-nums, oldstyle-nums, text-balance, text-pretty.

Fonts

The variable font binaries are NOT bundled here for licensing reasons. Drop them into dist/fonts/ (see dist/fonts/README.md) or override @font-face paths in your own CSS. The Geist family is SIL OFL 1.1.

License

MIT © MGM Laboratory.