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

@wizeworks/silicaui

v0.19.0

Published

Silica UI's CSS layer — a Tailwind v4 plugin of themeable, semantic component classes.

Readme

@wizeworks/silicaui

The CSS layer of Silica UI — a Tailwind CSS v4 plugin that ships semantic, themeable component classes (btn, btn-primary, card, dialog, …) built on an extensible OKLCH color-token engine. CSS-first: no tailwind.config, just a single @plugin "@wizeworks/silicaui" line. Framework-agnostic — pair it with @wizeworks/silicaui-react or use the classes directly in any HTML.

Website npm version npm downloads bundle size license CI

Install

pnpm add -D @wizeworks/silicaui tailwindcss
/* your globals.css */
@import "tailwindcss";
@plugin "@wizeworks/silicaui";

That's it — every class below is now available anywhere in your markup.

Colors

Silica ships eight semantic color pairs — primary, secondary, accent, neutral, info, success, warning, error — each with a -content foreground token, plus base-100/200/300 and base-content. Toggle themes with data-theme="dark" on any ancestor; themed subtrees can nest inside a differently-themed host and resolve tokens by nearest-ancestor inheritance.

Bring your own colors

Add colors in your CSS and list them so they get full component variant coverage (btn-<name>, badge-<name>, alert-<name>, …) — no codegen step:

@plugin "@wizeworks/silicaui" {
  colors: primary, secondary, accent, neutral, info, success, warning, error, brand;
}
@theme {
  --color-brand: #7c3aed;           /* hex, oklch, rgb, hsl — all fine */
  /* --color-brand-content is optional; omit it and Silica auto-derives a
     legible black/white foreground from the color's lightness. */
}

Now btn-brand, btn-outline btn-brand, btn-soft btn-brand, … all work, exactly like the built-in colors.

Components

Silica ships 76 component families as plain CSS classes — daisyUI's ergonomics, rebuilt on Tailwind v4's CSS-first engine with a wider, more consistent variant grammar (color / style / size / shape are always the same four axes).

| Category | Components | | --- | --- | | Actions | button dropdown swap | | Data display | accordion avatar badge card carousel chat details countdown diff kbd list mockup preview-card stat table timeline | | Data input | calendar checkbox checkbox-group color-picker combobox field fieldset file-input filter input join label number-field radio radio-group range rating select select-menu slider switch tag-input textarea toggle toggle-group validator | | Navigation | breadcrumb dock link menu menubar navbar navigation-menu pagination steps tabs | | Feedback & overlay | alert dialog drawer indicator loading popover progress radial-progress skeleton toast tooltip | | Layout | divider footer hero mask scroll-area stack | | Composite / advanced | chart data-table resizable-panels rich-text-editor sortable-list command-palette dropzone empty-state tree-view toolbar wizard | | Typography | typography prose |

The composite/advanced classes back the matching React wrapper packages — @wizeworks/silicaui-charts, @wizeworks/silicaui-table, @wizeworks/silicaui-panels, @wizeworks/silicaui-editor, and @wizeworks/silicaui-dnd — each pairing the CSS with the JS engine it wraps (ECharts, TanStack Table, react-resizable-panels, TipTap, dnd-kit).

Button

<button class="btn btn-primary">Primary</button>
<button class="btn btn-outline btn-secondary">Outline</button>
<button class="btn btn-soft btn-accent btn-lg">Soft large</button>
<button class="btn btn-ghost">Ghost</button>
<button class="btn btn-primary" aria-busy="true">Loading</button>
<button class="btn btn-primary btn-square" aria-label="Add">+</button>

| Axis | Classes | | --- | --- | | Color | btn-primarybtn-error, btn-<yourColor> | | Style | btn-outline · btn-soft · btn-ghost · btn-link · btn-dash (default is solid) | | Size | btn-xs · btn-sm · btn-md · btn-lg · btn-xl | | Shape | btn-square · btn-circle | | Layout | btn-block · btn-wide | | State | btn-active · btn-disabled, aria-busy="true" for loading |

Every other component follows the same color/style/size/shape grammar — see the architecture doc for the full design system.

Links