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

shadcn-presets

v0.3.0

Published

Decode shadcn create preset codes to injectable theme CSS (uses shadcn/preset for the codec)

Downloads

448

Readme

shadcn-presets

Generate CSS variables from a Shadcn preset.

This package allows you to mimic the Shadcn create page by dynamically generating the CSS required to override your Shadcn CSS variables within a page.

Usage

npm i shadcn-presets
import { presetToShadcnThemeCss } from "shadcn-presets";

const theme = presetToShadcnThemeCss("b1ZjC5Fqt");

if (!theme) {
  throw new Error("Invalid preset value");
}

const { css, build } = theme;
// `build` is the registry theme object (`build.cssVars.light`, `build.name`, …) plus
// `build.fontSans` / `build.fontHeading` when those variables are emitted.

const INJECTED_STYLE_ID = "shadcn-presets";

let element = document.getElementById(INJECTED_STYLE_ID) as HTMLStyleElement | null;

// Create a new <style> element if it doesn't exist in your HTML
if (!element) {
  element = document.createElement("style");
  element.id = INJECTED_STYLE_ID;
}

// Inject the CSS variables into the page!
element.textContent = css;

Fonts

Font support is a little nuanced. The presetToShadcnThemeCss function emits --font-sans and --font-heading on :root for the preset’s body and heading font ids. Whether those faces actually render depends on:

  1. The font being loaded in your app (e.g. Google Fonts, next/font, self-hosted CSS).
  2. The family name in the stack matching the @font-face / loader (see font-families.ts for the built-in defaults, which assume variable fonts where applicable).

If the default stack does not match what your build registers (e.g. Google Fonts shows font-family: "Figtree", sans-serif; for a static build), pass the value only—no trailing semicolon; the serializer adds the rule terminator:

const { css, build } = presetToShadcnThemeCss("b1ZjC5Fqt", {
  figtree: `"Figtree", sans-serif`,
})!;
// build.fontSans reflects the resolved `--font-sans` stack

You can also pass overrides through buildRegistryTheme / presetConfigToThemeBuildInput via fontFamilyOverrides if you assemble the theme yourself.

Example

Run the example to see it in action:

cd example
bun install
bun run dev

Before After

License

MIT. Theme data and behavior are aligned with shadcn/ui.