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

@go-go-golems/pbui-theme-genera

v0.1.2

Published

PBUI theme-genera package.

Readme

@go-go-golems/pbui-theme-genera

This package is a stylesheet, and the stylesheet is a contract. The PBUI components emit structure and class names; every visual decision — what "eligible" looks like, what "inert" looks like, what a menu looks like — lives here as CSS. The shipped look is the monochrome Symbolics Genera / Dynamic Windows aesthetic: ink on paper, monospace, hard borders, marching-ants dashes, inverse-video bars. An alternative theme is an alternative stylesheet implementing the same class vocabulary.

Use

import "@go-go-golems/pbui-theme-genera/genera.css";

and put className="pbui-root" on your application's outermost element.

The state classes (the part that is really API)

These class names are applied by usePresentation and asserted by the end-to-end test suite; a replacement theme must style all of them, and renaming them is a breaking change.

| Class | Meaning | Genera rendering | |---|---|---| | pbui-pres | any presentation | transparent 2px outline (reserves space) | | pbui-hover | pointer is on this presentation | solid outline | | pbui-related | another presentation of the same object is hovered | dotted outline | | pbui-eligible | matches the pending argument — clicking supplies it | dashed marching-ants animation | | pbui-inert | an input context is active and this does not match | 0.3 opacity, pointer-events: none | | pbui-passthru | fallthrough mode during a foreign accept | pointer-events: none, no dimming | | pbui-kbd-target | the keyboard focus cursor | double outline |

Chrome classes (pbui-menu*, pbui-docbar*, pbui-status*, pbui-pane*, pbui-listener*, pbui-line*, pbui-prompt*) style the components from @go-go-golems/pbui-chrome and @go-go-golems/pbui-listener.

Tokens

:root {
  --pbui-ink;  --pbui-paper;  --pbui-desk;          /* the monochrome base */
  --pbui-teal; --pbui-coral;  --pbui-gold;          /* text-only accents   */
  --pbui-font; --pbui-font-size;
}

The design rule inherited from the source prototypes: chrome stays monochrome; accent colors appear only on content text (status glyphs, semantic markers), never on borders or backgrounds. Demos use the accent variables for things like order-status glyphs.

Behavioral CSS worth knowing

  • pbui-inert's pointer-events: none is not decoration — it is half of the input context's gating (the engine's click gate is the other half).
  • pbui-passthru is the entire implementation of fallthrough participation: the DOM delivers the click to whatever is underneath.
  • The listener's scroll area restores user-select: text inside the globally non-selectable pbui-root, so transcripts are copyable.
  • prefers-reduced-motion disables the marching-ants animation; eligibility remains visible through the dashed outline itself.