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

@russfranky/shadcss

v0.2.1

Published

shadcn's beauty, no JS framework. A modular HTML+CSS-only component library built on modern web standards.

Readme

shadcss

Zero-runtime UI with the shadcn aesthetic — no React, no Tailwind, no Radix, no hydration. 52 HTML/CSS components and patterns for server-rendered, static, HTMX, Astro, and AI-generated apps. ~15.4 KB gzipped, zero dependencies, zero JS runtime. Complex widgets are clearly marked.

gzip size no js framework components deps license AI-ready

▶ Live demo: shadcss.vercel.app

shadcss brings the shadcn/ui visual language to plain HTML and CSS. Where shadcn uses React + Radix + Tailwind, shadcss is CSS you paste into any server-rendered template — built on :has(), the Popover API, native <dialog>, and design tokens. No JS framework. Zero dependencies. Zero framework lock-in. The CSS bundle ships 0 JS; native <dialog>/Popover/toast need a one-line native trigger (showModal()/showPopover()).

Not affiliated with, endorsed by, or sponsored by shadcn/ui. Inspired by its design language.

If you've ever looked at a shadcn component's .tsx file and thought "why is this a React hook?" — this is for you.


What's new in 0.2.0 (breaking)

0.2.0 retunes shadcss to match current shadcn (Tailwind v4 era) pixel-for-pixel, which changes the theming contract:

  • Colors are now OKLCH (shadcn's neutral palette) stored as full color values. Components reference them directly — var(--primary) — with opacity via color-mix(in oklab, var(--primary) 90%, transparent). Breaking: the old contract stored HSL channels (--primary: 240 6% 10%) used as hsl(var(--primary)). If you re-themed by overriding HSL triples, set full colors now (--primary: oklch(0.205 0 0) — or any CSS color).
  • --radius is 0.625rem (was 0.5rem); focus rings use shadcn's 3px ring; button/input/badge/avatar/etc. metrics match current shadcn.
  • Requires oklch() + color-mix() (Chrome 111+, Safari 16.4+, Firefox 113+) — already implied by the Popover API and :has() shadcss builds on.

Import only what you use (tree-shaking)

The full bundle dist/shadcss.min.css is ~15.4 KB gz. To ship less, import the base layer once plus only the components you use:

<link rel="stylesheet" href="@russfranky/shadcss/dist/base.min.css">
<link rel="stylesheet" href="@russfranky/shadcss/dist/components/button.min.css">
<link rel="stylesheet" href="@russfranky/shadcss/dist/components/card.min.css">

base.min.css is ~2.7 KB gz (reset + tokens + thin utilities); each component is ~0.5–1.5 KB gz. A typical app (base + ~8 components) is ~8 KB gz vs 15.4 for the full set. Some components reuse another's classes — include those too (see registry.json deps).


Why

shadcn changed how we think about components — copy them in, own the code. But every component still ships a JavaScript file. Modern CSS can do it all:

| shadcn (React) | shadcss (HTML + CSS) | | ---------------------- | ------------------------------------------ | | <Dialog open={...}> | <dialog open> — native, with backdrop | | <Accordion> | <details><summary> — free a11y | | <DropdownMenu> | Popover API (popover attribute) | | <Tabs> | <input type="radio"> + :has() | | <Tooltip> + hook | ::after + :hover/:focus-within | | <Progress> | <progress> — restyled native element | | <Switch> + state | <input type="checkbox"> styled as switch | | <Toast> + viewport | Popover API + CSS animation auto-dismiss | | <Slider> + state | <input type="range"> styled | | <Command> + cmdk | Popover API + styled shell | | <Sheet> + state | <dialog data-side> + slide animation | | <Sidebar> (2500 LOC) | Pure CSS, 200 lines |

The cost of every kilobyte of JavaScript is parse time, hydration jank, and framework lock-in. The cost of HTML + CSS is — nothing.


Components (52)

shadcss covers the shadcn component set as CSS — 52 components and patterns; complex widgets are marked with their js/support needs (see llms.txt or shadcss info):

| Component | File | Status | | --- | --- | --- | | accordion | src/components/accordion.css | ✅ | | alert | src/components/alert.css | ✅ | | alert-dialog | src/components/alert-dialog.css | ✅ | | aspect-ratio | src/components/aspect-ratio.css | ✅ | | avatar | src/components/avatar.css | ✅ | | badge | src/components/badge.css | ✅ | | breadcrumb | src/components/breadcrumb.css | ✅ | | button | src/components/button.css | ✅ | | calendar | src/components/calendar.css | ✅ | | card | src/components/card.css | ✅ | | carousel | src/components/carousel.css | ✅ | | chart | (use tokens --chart-1 through --chart-5) | ✅ | | checkbox | src/components/checkbox.css | ✅ | | collapsible | src/components/collapsible.css | ✅ | | command | src/components/command.css | ✅ | | container | src/components/container.css | ✅ | | context-menu | src/components/context-menu.css | ✅ | | data-table | (use table.css + dropdown) | ✅ | | dialog | src/components/dialog.css | ✅ | | drawer | src/components/drawer.css | ✅ | | dropdown-menu | src/components/dropdown.css | ✅ | | empty | src/components/empty.css | ✅ | | field | src/components/field.css | ✅ | | hover-card | src/components/hover-card.css | ✅ | | input | src/components/input.css | ✅ | | input-otp | src/components/input-otp.css | ✅ | | kbd | src/components/kbd.css | ✅ | | label | src/components/label.css | ✅ | | menubar | src/components/menubar.css | ✅ | | navigation-menu | src/components/navigation-menu.css | ✅ | | pagination | src/components/pagination.css | ✅ | | popover | src/components/popover.css | ✅ | | progress | src/components/progress.css | ✅ | | radio | src/components/radio.css | ✅ | | radio-group | src/components/radio-group.css | ✅ | | resizable | src/components/resizable.css | ✅ | | scroll-area | src/components/scroll-area.css | ✅ | | select | src/components/select.css | ✅ | | separator | src/components/separator.css | ✅ | | sheet | src/components/sheet.css | ✅ | | sidebar | src/components/sidebar.css | ✅ | | skeleton | src/components/skeleton.css | ✅ | | slider | src/components/slider.css | ✅ | | sonner | src/components/sonner.css | ✅ | | spinner | src/components/spinner.css | ✅ | | switch | src/components/switch.css | ✅ | | table | src/components/table.css | ✅ | | tabs | src/components/tabs.css | ✅ | | textarea | src/components/textarea.css | ✅ | | toast | src/components/toast.css | ✅ | | toggle | src/components/toggle.css | ✅ | | toggle-group | src/components/toggle-group.css | ✅ | | tooltip | src/components/tooltip.css | ✅ | | typography | src/components/typography.css | ✅ |


Install

CDN

<!-- Pin a version in production so a future major can't silently break you. -->
<link rel="stylesheet" href="https://unpkg.com/@russfranky/[email protected]/dist/shadcss.min.css">

npm

npm install @russfranky/shadcss
/* Bare-specifier @import resolves ONLY through a bundler (Vite, webpack,
   Parcel, esbuild…) that honors the package "exports"/"style" field. Plain
   CSS has no Node resolution, so this 404s without a bundler. */
@import "@russfranky/shadcss";

/* No bundler? Import the built file by explicit path instead: */
@import "@russfranky/shadcss/dist/shadcss.min.css";

Copy a single component (shadcn-style)

Every component is a standalone CSS file in src/components/. Copy what you need; the only shared dependency is src/base/tokens.css.


AI-friendly by design

shadcss ships three artifacts designed for AI agents to generate UI reliably:

1. registry.json — machine-readable component spec

Every component is described with: dependencies, classes, attributes, and example markup. AI agents can parse this to know exactly which classes exist and how to combine them.

{
  "name": "button",
  "file": "src/components/button.css",
  "deps": ["base/tokens"],
  "classes": ["btn", "btn-secondary", "btn-outline", "btn-ghost",
              "btn-destructive", "btn-link", "btn-sm", "btn-lg",
              "btn-icon", "btn-group"],
  "markup": "<button class=\"btn\">Default</button>"
}

2. AI_GUIDE.md — pattern reference

The 7 patterns you'll use 95% of the time, with copy-paste examples:

  1. Modal — <dialog> + showModal()
  2. Dropdown — Popover API
  3. Accordion — native <details>
  4. Tabs — radios + :has()
  5. Tooltip — ::after + :hover
  6. Selection — native inputs
  7. Toast — Popover + CSS animation

Plus a checklist for generating code, common anti-patterns, and full end-to-end examples (login form, app shell, data table, command palette, settings page).

3. Predictable conventions

  • Variants are classes, not data attributes: class="btn btn-outline"
  • State uses ARIA: aria-current, aria-pressed, aria-expanded
  • Styling uses design tokens: hsl(var(--primary)), never #000000
  • Component files are standalone — copy one, get one
  • The HTML is semantic<button> not <div>, <dialog> not <div>

Theming

All colors live as HSL channels in CSS custom properties. Override one variable, the entire palette follows.

:root {
  --primary: 250 84% 54%;       /* indigo */
  --primary-foreground: 0 0% 100%;
  --radius: 0.75rem;
}

Dark mode ships in two flavors:

<!-- declarative -->
<html data-theme="dark">

<!-- automatic -->
<html>  <!-- follows prefers-color-scheme -->

Tokens are organized into 12 groups: surfaces, brand, status, borders, sidebar, chart, radii, typography, spacing, elevation, motion, z-index.


Build

npm install
npm run build          # one-shot
npm run dev            # watch

Output:

dist/shadcss.css        ~165 KB  (expanded)
dist/shadcss.min.css    ~137 KB  (minified)
gzipped             ~16.0 KB (over the wire)

Lightning CSS handles bundling, minification, and syntax lowering. Browser targets: Chrome 111+, Firefox 113+, Safari 16+.


Browser support

| Feature | Chrome | Firefox | Safari | | -------------------- | ------ | ------- | ------ | | :has() | 105 | 121 | 15.4 | | Popover API | 114 | 125 | 17 | | <dialog> | 37 | 98 | 15.4 | | dialog.showModal() | 37 | 98 | 15.4 | | color-mix() | 111 | 113 | 16.2 | | CSS Nesting | 112 | 117 | 16.5 | | details[name] exclusive | 129 | — | TP | | interpolate-size | 129 | — | 26 |

The interpolate-size: allow-keywords feature (used by the accordion's smooth open animation) is the only feature that requires the latest browsers. Graceful degradation: the content still shows/hides, it just snaps instead of animating.


Comparison

| Framework | JS? | Gzipped | React dep? | Copy-paste? | Components | | --------------- | ------- | ------- | ---------- | ----------- | ---------- | | shadcn/ui | ✅ | varies | ✅ | ✅ | 50+ | | Radix | ✅ | varies | ✅ | ❌ | 40+ | | Mantine | ✅ | varies | ✅ | ❌ | 100+ | | Bootstrap | ✅ | ~25 KB | ❌ | ❌ | 20+ | | Bulma | ❌ | ~20 KB | ❌ | ❌ | 30+ | | shadcss | no framework¹ | 16.0 KB | | | 52 |

¹ No JS framework: the CSS bundle ships 0 JS. Opening native <dialog>, Popover, and toast components needs a one-line native call (showModal()/showPopover()) — there is no runtime, hydration, or state library.


Project structure

This package (packages/shadcss) within the shadcss-ui monorepo:

packages/shadcss/
├── src/
│   ├── base/
│   │   ├── reset.css        ← modern reset
│   │   ├── tokens.css       ← 12 token groups (REQUIRED)
│   │   └── theme.css        ← token helpers
│   ├── components/          ← 52 standalone component files
│   └── shadcss.css          ← main entry, @imports all
├── dist/
│   ├── shadcss.css          ← bundled (165 KB)
│   └── shadcss.min.css      ← minified (101 KB, 15.4 KB gzipped)
├── scripts/
│   └── build.mjs            ← Lightning CSS bundler
├── registry.json            ← machine-readable component registry
├── AI_GUIDE.md              ← patterns + rules for AI code generation
├── README.md                ← this file
├── LICENSE                  ← MIT
└── package.json

The live showcase of every component lives in apps/www.


Contributing

PRs welcome. Each component is one file in src/components/. Keep it under 200 lines if you can. Use the design tokens, not raw values. Update registry.json when adding a new component.


License

MIT