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.5

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.

| | | |---|---| | Site | darkroom-ui.dev | | Storybook | storybook.darkroom-ui.dev | | npm | darkroom-ui | | Repository | github.com/laradiaz/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.5

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

Usage

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

import "darkroom-ui/style.css";

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

import "darkroom-ui/fonts.css";

Bundled defaults: Cormorant Garamond (--font-display) and DM Sans (--font-sans). Override anytime CSS variables if you bring your own faces:

:root {
  --font-display: "Newsreader", serif;
  --font-sans: "IBM Plex Mono", monospace; /* or keep a sans for UI */
}

Recommended free fonts

Editorial serifs (display / long-form):

| Font | Notes | |------|--------| | Newsreader | Contemporary, strong for digital reading | | EB Garamond | Literary classic | | Noticia Text | Sturdy newspaper text | | Instrument Serif | Expressive headlines (less ideal as body) |

Typewriter / mono:

| Font | Notes | |------|--------| | Courier Prime | Polished Courier | | IBM Plex Mono | Clean modern mono | | Cutive Mono | Warm typewriter feel | | Special Elite | Distressed accent type (not body) |

Pairings to try:

| Pairing | Mood | |---------|------| | Newsreader + IBM Plex Mono | Modern editorial | | EB Garamond + Courier Prime | Literary / archive | | Instrument Serif + Cutive Mono | Fashion or art magazine |

import {
  Button,
  Heading,
  PostCard,
  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";

Available subpaths: button, select, file-dropzone, badge, typography, layout, grid, divider, media, card, hero, navigation, footer, core.

Design tokens only

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

CSS bundle sizes

| Import | Approx. size | |--------|----------------| | darkroom-ui/style.css | ~45 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 returns:

| Value | Description | |-------|-------------| | theme | "light" | "dark" | "system" | | resolved | Effective "light" | "dark" | | setTheme | Set preference | | toggle | Flip light ↔ dark | | darkModeEnabled | resolved === "dark" |

Components

Form

| Component | Description | |-----------|-------------| | FileDropzone | Drag-and-drop / click file picker | | NewsletterSignup | Email form | | Select | Custom listbox select |

Button

| Component | Description | |-----------|-------------| | Button | primary / ghost / link | | NavMenuButton | Mobile nav menu toggle (hamburger) |

Content

| Component | Description | |-----------|-------------| | Badge | default / stamp / outline | | Divider | Section divider | | Heading, Text, Label | Typography | | Media | Image with caption / overlay | | PostCard | Linked content teaser |

Layout

| Component | Description | |-----------|-------------| | ContentGrid | Responsive grid | | Footer | Site footer | | Hero | Image/video hero | | NavBar | Navigation | | Page, Container, Section | Page shell | | SocialLink | Icon or text social link |

Interactive docs: storybook.darkroom-ui.dev.

Development

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

Storybook deploys to GitHub Pages on push to main (pnpm run build-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