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

darkroom-ui

v0.2.1

Published

Monochrome editorial React component library with CSS-variable light/dark theming

Readme

darkroom-ui

Monochrome editorial React component library — warm paper and charcoal tones, CSS-variable light/dark mode, no accent palette.

Repository: github.com/laradiaz/darkroom-ui
npm: darkroom-ui

Install

npm install darkroom-ui
# or
pnpm add darkroom-ui

Install a specific version from Git (without npm):

pnpm add git+ssh://[email protected]:laradiaz/darkroom-ui.git#v0.2.0

Peer dependencies: react and react-dom (v18+).

Usage

Import component styles once in your app entry (~35 KB):

import "darkroom-ui/style.css";

Load fonts separately (optional, ~87 KB woff2):

import "darkroom-ui/fonts.css";
import {
  Button,
  Heading,
  RecipeCard,
  NavBar,
  Hero,
  Footer,
  useDarkroomDarkMode,
  DarkroomUIProvider,
} from "darkroom-ui";

function App() {
  const { toggle, darkModeEnabled } = useDarkroomDarkMode();

  return (
    <DarkroomUIProvider config={{ containerSize: "lg" }}>
      <Button type="button" variant="ghost" onClick={toggle}>
        {darkModeEnabled ? "Light" : "Dark"}
      </Button>
      <Heading level={1}>Hello</Heading>
      <Button variant="primary">Get started</Button>
    </DarkroomUIProvider>
  );
}

Tree-shaking entry (no CSS side effects)

import { Button } from "darkroom-ui/core";
import "darkroom-ui/style.css";
import "darkroom-ui/fonts.css";

Per-component subpaths

import { Button } from "darkroom-ui/button";
import { Hero } from "darkroom-ui/hero";
import "darkroom-ui/style.css";

Design tokens only

@import "darkroom-ui/tokens.css";

CSS bundle sizes

| Import | Approx. size | |--------|----------------| | darkroom-ui/style.css | ~35 KB | | darkroom-ui/fonts.css | ~1 KB CSS + ~87 KB woff2 | | darkroom-ui/tokens.css | ~1 KB |

Optional provider

DarkroomUIProvider sets defaults for the whole tree:

| Config | Purpose | |--------|---------| | unstyled | Skip CSS module classes | | containerSize | Default Container width | | socialLinkMode | Default SocialLink mode | | themeStorageKey | Reserved for theme persistence |

All components accept unstyled and slotProps for DOM customization.

Dark mode

Dark mode uses the dark class on <html>:

<html class="dark">

Or use useDarkroomDarkMode() — toggles html.dark, persists to localStorage, and exposes darkModeEnabled, toggle, and setTheme.

Components

| Component | Description | |-----------|-------------| | Heading, Text, Label | Typography | | Button | primary / ghost / link | | NavMenuButton | Mobile nav menu toggle (hamburger) | | Badge | default / stamp / outline | | RecipeCard, MediaCard | Content cards | | Divider | Section divider | | ContentGrid | Responsive grid | | NavBar | Navigation | | Hero | Image/video hero | | NewsletterSignup | Email form | | SocialLink | Icon or text social link | | Figure | Image with caption | | Footer | Site footer | | Page, Container, Section | Layout |

Development

pnpm install
pnpm run build
pnpm run check-publish
pnpm run check-publish:full
pnpm run storybook

Publish

Maintainers only:

npm login
pnpm run build
pnpm run check-publish
npm publish --access public

For version bumps after the initial release: ./scripts/release.sh patch (or minor / major).

License

MIT