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

@cativo23/nightwire

v1.0.17

Published

CLI installer for the Nightwire cyberpunk UI design system

Downloads

209

Readme

Nightwire

A dark-mode-only cyberpunk UI design system. Framework-agnostic. Pure #000000 void. Semantic neon palette. AI-first.

Built on top of nerv-ui by TheGreatGildo.

Design Principles

  1. Pure black void — Background is always #000000. No gray, no navy.
  2. Color = function — Every color has a semantic role. Don't use color decoratively.
  3. Readable first — 14px base font, 1.5 line-height. Legibility over density.
  4. No CRT effects — No scanlines, no flicker, no vignette. Clean modern look.
  5. Soft neon — Cyberpunk-inspired but not eye-burning. Vibrant, not harsh.

Installation

CLI Installer (Recommended)

npx @cativo23/nightwire install

Interactive prompts detect your project type (Next.js, Vite, Astro, plain HTML) and copy the right files:

  • nightwire.css — 24+ pure CSS components, 42 design tokens
  • DESIGN.md — AI-readable design spec (Google design.md standard)
  • skill/nightwire/SKILL.md — AI skill for Claude, Cursor, Copilot, v0

Manual Installation

Quick Start

Vanilla CSS

<link rel="stylesheet" href="nightwire.css">

Tailwind CSS

// tailwind.config.js
import nightwirePreset from './tailwind.preset.js';
export default { presets: [nightwirePreset] };

Fonts

<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+Display:wght@700;800;900&family=JetBrains+Mono:wght@400;500;700&family=Saira+Extra+Condensed:wght@400;600;700;800&family=Shippori+Mincho+B1:wght@500;700;800&display=swap" rel="stylesheet">

AI Agents (Claude Code, etc.)

Drop SKILL.md into your project as a skill. The agent can then generate Nightwire-compliant UIs from natural language prompts.

What's Included

Design tokens — Colors, semantic roles, surfaces, type scale, spacing, border radius.

Utility classes — Text color, glow effects, surface levels, borders, grid layouts.

Component styles — Buttons, cards, panels, modals, tabs, sidebar nav, dropdowns, breadcrumbs, tooltips, data tables, metrics grids, badges, tags, status LEDs, avatars, key-value rows, progress bars, skeleton loaders, toasts, dividers.

Tailwind preset — All tokens mapped to Tailwind's config (colors, fonts, spacing, radius, shadows).

Accessibility — All colors pass WCAG AA on black. Focus-visible outlines. Reduced-motion support.

Color Palette

| Role | Color | Hex | Contrast on Black | |---|---|---|---| | Primary | Blue | #6699ff | 7.5:1 | | Success | Green | #7aed7a | 11.2:1 | | Info | Cyan | #66ddff | 10.8:1 | | Danger | Red/Pink | #ff6688 | 6.4:1 | | Warning | Yellow | #e8993a | — | | Accent | Purple | #b266e0 | — |

File Structure

nightwire/
├── nightwire.css          <- Design tokens, utilities & component styles
├── tailwind.preset.js     <- Tailwind CSS preset with all tokens
├── demo.html              <- Full working demo (blockchain dashboard)
├── demo2.html             <- Full working demo (neural ops center)
├── SKILL.md               <- Claude Code skill (full design system spec)
├── LICENSE                 <- MIT (with nerv-ui credits)
├── README.md
└── components/
    ├── event-log.html
    ├── vault-card.html
    ├── magi-oracle.html
    ├── metrics-grid.html
    └── data-table.html

Credits

Built on nerv-ui by TheGreatGildo. Licensed under MIT.