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

tailwind-softpop-plugin

v0.0.17

Published

Tailwind CSS plugin for softpop design system

Readme

Tailwind Soft Pop Plugin

A Tailwind CSS v4 plugin that implements the "Soft Pop" design system. This plugin provides a vibrant, playful aesthetic with hard shadows, bold borders, and a comprehensive color palette using accessible oklch colors.

Features

  • 🎨 Radiant Colors: Complete 50-950 color palette using oklch for Primary, Secondary, Accent, Base, Neutral, and functional colors (Success, Warning, Error, Info).
  • 🔤 Typography: Pre-configured font families (Nunito for headings, Mulish for body).
  • 📦 Components: Ready-to-use accessible components like Buttons and Cards.
  • 📏 Layout: Responsive container utilities.
  • 🔍 Container Queries: Intelligent card layouts that adapt to their container size.

Installation

npm install tailwind-softpop-plugin
# or
pnpm add tailwind-softpop-plugin
# or
yarn add tailwind-softpop-plugin

Usage

Since this is a Tailwind CSS v4 plugin, you simply need to import it into your main CSS file.

@import "tailwindcss";
@import "tailwind-softpop-plugin";

This will automatically configure the theme variables, base styles, and load the component plugin.

Design System

Colors

The system uses oklch for inconsistent perceptual brightness.

  • Primary: Cyan/Blue tones
  • Secondary: Orange/Yellow tones
  • Accent: Purple/Pink tones
  • Neutral: Slate/Grey tones

Components

Buttons (.btn)

Available variants:

  • .btn-primary
  • .btn-secondary
  • .btn-outline
<button class="btn btn-primary">Click Me</button>

Cards (.card)

Responsive cards that support Container Queries.

<div class="card">
  <div class="card-icon">★</div>
  <div class="card-title">Card Title</div>
  <p>Some awesome content here.</p>
</div>

Horizontal Card: Add .horizontal to make the card adapt to a row layout when width permits (>450px).

<div class="card horizontal">
  <!-- content -->
</div>

Section Container (.section-container)

A responsive container that handles max-width and padding automatically across breakpoints.

<section class="section-container">
  <!-- content -->
</section>

License

MIT © CarfDev