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

@wispplace/css

v1.0.0

Published

A minimal, monospace-first CSS stylesheet with automatic light/dark mode

Downloads

72

Readme

wisp.css

A minimal, monospace-first CSS stylesheet with automatic light/dark mode. See it live on https://wisp.place or https://sites.wisp.place/wisp.place/wisp.css for a demo.

Quick Start

CDN

<link rel="stylesheet" href="https://sites.wisp.place/wisp.place/wisp.css/wisp.css">

Self-hosted

Just copy wisp.css to your project and link to it:

<link rel="stylesheet" href="/wisp.css">

Features

  • Automatic dark mode via prefers-color-scheme
  • CSS custom properties for easy theming
  • JetBrains Mono typography
  • Components: cards, buttons, alerts, forms
  • Utility classes: spacing, flexbox, text styling
  • Responsive with mobile-first breakpoints

CSS Variables

All variables use the --wisp- prefix. Unprefixed aliases are also available for convenience.

Colors

--wisp-bg           /* Main background */
--wisp-bg-alt       /* Alternate background (cards, etc) */
--wisp-text         /* Primary text */
--wisp-text-muted   /* Secondary text */
--wisp-text-subtle  /* Tertiary text */
--wisp-border       /* Strong borders */
--wisp-border-light /* Light borders */
--wisp-accent       /* Accent/link color */
--wisp-cta-bg       /* Button background */
--wisp-cta-text     /* Button text */
--wisp-code-bg      /* Code block background */
--wisp-success      /* Success state */
--wisp-danger       /* Error/danger state */
--wisp-warning      /* Warning state */
--wisp-info         /* Info state */

Customizing

Override variables in your own CSS:

:root {
    --wisp-accent: oklch(0.65 0.20 200); /* Blue accent */
}

Components

Cards

<div class="card">Basic card</div>
<div class="card success">Success card</div>
<div class="card danger">Danger card</div>
<div class="card info">Info card</div>

Buttons

<button>Primary button</button>
<button class="outline">Outline button</button>
<a class="cta-primary" href="#">CTA Primary</a>
<a class="cta-secondary" href="#">CTA Secondary</a>

Alerts

<div class="alert alert-success">Success message</div>
<div class="alert alert-danger">Error message</div>
<div class="alert alert-warning">Warning message</div>
<div class="alert alert-info">Info message</div>

Forms

<label for="email">Email</label>
<input type="email" id="email" placeholder="[email protected]">

Utility Classes

Spacing

  • .m-{0-4} - margin
  • .mt-{0-6}, .mb-{0-6}, .ml-{0-4}, .mr-{0-4} - directional margin
  • .p-{0-6} - padding
  • .px-{1-4}, .py-{1-4} - horizontal/vertical padding
  • .gap-{1-6} - flex/grid gap

Flexbox

  • .flex, .inline-flex
  • .flex-col, .flex-wrap
  • .items-start, .items-center, .items-end
  • .justify-start, .justify-center, .justify-end, .justify-between

Text

  • .text-left, .text-center, .text-right
  • .text-sm, .text-base, .text-lg, .text-xl
  • .font-normal, .font-medium, .font-semibold, .font-bold
  • .text-muted, .text-subtle, .text-accent, .text-success, .text-danger

Display

  • .hidden, .block, .inline, .inline-block, .flex, .grid
  • .hide-mobile - hidden on screens < 768px
  • .hide-desktop - hidden on screens >= 769px

Layout

<div class="container">
    <!-- max-width: 900px, centered with padding -->
</div>

<div class="container-wide">
    <!-- max-width: 1100px, centered with padding -->
</div>

License

MIT