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

@digicreon/mucss

v1.0.0

Published

µCSS — A CSS framework built on PicoCSS v2

Readme

µCSS

Lightweight CSS framework built on PicoCSS v2, part of the Temma-UI project.

Features

  • 20 color themes — One CSS file per theme, ready to use
  • 12-column responsive grid — 5 breakpoints, offsets, ordering, display utilities
  • 13 UI components — Accordion, Alert, Badge, Breadcrumb, Button, Card, Forms, Modal, Pagination, Progress, Spinner, Table, Tabs
  • Dark mode — Automatic (prefers-color-scheme) or manual (data-theme)
  • Pure CSS — No JavaScript dependency
  • PHP tooling — Build and theming via PHP scripts, no Node.js/SASS required
  • PicoCSS compatible — All variables use the --pico- prefix

Installation

Include a single CSS file from dist/:

<!-- Default theme (azure) -->
<link rel="stylesheet" href="dist/mu.css">

<!-- Or pick a specific color theme -->
<link rel="stylesheet" href="dist/mu.violet.css">

Each file is self-contained (PicoCSS base + colors + grid + all components).

Available themes

| | | | | |---|---|---|---| | azure (default) | red | pink | fuchsia | | purple | violet | indigo | blue | | cyan | jade | green | lime | | yellow | amber | pumpkin | orange | | sand | grey | zinc | slate |

µCSS components

| Component | Description | Example | |-----------|-------------|---------| | Accordion | Collapsible sections using <details> | accordion.html | | Alert | Notification banners, 8 colors, dismissible | alert.html | | Badge | Inline labels, pills, outline, attached | badge.html | | Breadcrumb | Navigation trail, 4 separator styles, boxed | breadcrumb.html | | Button | 8 colors, ghost, link, 3 sizes | button.html | | Card | Colored <article> with header/footer | card.html | | Forms | Input sizes (sm/lg) and validation states | forms.html | | Modal | Dialog sizes (sm/default/lg/fullscreen) | modal.html | | Pagination | Aligned, sized, borderless, responsive | pagination.html | | Progress | Colored progress bars | progress.html | | Spinner | Loading spinners, 8 colors, 3 sizes | spinner.html | | Table | Hover, striped, bordered, compact, fullwidth | table.html | | Tabs | Standard, pills, aligned, fullwidth | tabs.html |

PicoCSS native

| Component | Description | Example | |-----------|-------------|---------| | Typography | Headings, blockquote, lists, code, kbd, mark | typography.html | | Tooltip | data-tooltip with 4 placements | tooltip.html | | Dropdown | <details class="dropdown"> menus | dropdown.html | | Group | Input/button groups via role="group" | group.html | | Loading | Loading states via aria-busy="true" | loading.html | | Switch | Toggle switches via <input role="switch"> | switch.html | | Checkbox & Radio | Checkboxes, radios, indeterminate, validation | checkbox-radio.html | | Range | Range sliders with output | range.html | | Forms (advanced) | Color, date, time, file, search, helper text | forms-advanced.html |

Grid

Flexbox 12-column grid with 5 breakpoints:

| Breakpoint | Prefix | Min-width | |------------|--------|-----------| | Default | col- | 0 | | Small | col-sm- | 640px | | Medium | col-md- | 960px | | Large | col-lg- | 1200px | | Extra-large | col-xl- | 1400px |

<div class="row">
  <div class="col-12 col-md-6 col-lg-4">Responsive column</div>
  <div class="col-12 col-md-6 col-lg-8">Responsive column</div>
</div>

Offsets (offset-{n}, offset-md-{n}...), ordering (order-first, order-md-2...) and display utilities (d-none, d-md-block...) are included.

See grid example.

Dark mode

µCSS supports three modes:

<!-- Automatic (follows OS preference) -->
<html>

<!-- Force light -->
<html data-theme="light">

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

Build

Requires PHP. No other dependencies.

php build/mu-build.php              # Build all 20 themes into dist/
php build/mu-build.php --minify     # Build minified
php build/mu-build.php --list       # List themes and base files

Project structure

mucss/
  build/
    mu-build.php          # Build script
    mu-color-gen.php      # Color variable generator
    mu.theme.json         # 20 theme definitions
    pico.css              # PicoCSS v2 base (external)
    pico.colors.css       # PicoCSS palette (external)
  css/
    mu.grid.css           # 12-column grid
    mu.component.*.css    # UI components (13 files)
  dist/                   # Build output (21 CSS files)
  examples/               # HTML demos for each component
  specification.md        # Full specification

Color roles

Each theme maps 8 semantic roles to PicoCSS color families:

primary · secondary · tertiary · contrast · success · info · warning · error

License

See LICENSE.