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 🙏

© 2025 – Pkg Stats / Ryan Hefner

pixri-css

v1.1.12

Published

A lightweight beginner-friendly CSS framework like Tailwind.

Readme

🌌 pixri CSS

pixri CSS is a lightweight, beginner-friendly CSS framework inspired by Tailwind.
It provides utility-first classes for fast, responsive, and clean UI development — without the steep learning curve.


📦 Installation

Install via npm

npm install pixri-css

Include in your project:

React / Next.js / Vite etc:

import "pixri-css/dist/pixricss.min.css";

Plain HTML:

<link rel="stylesheet" href="./node_modules/pixri-css/dist/pixricss.min.css" />

Use via CDN

Don’t want npm? Use the CDN link:

<!-- jsDelivr -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/pixri-css/dist/pixricss.min.css" />

<!-- OR unpkg -->
<link rel="stylesheet" href="https://unpkg.com/pixri-css/dist/pixricss.min.css" />

⚡ Quick Start

<div class="p-4 bg-primary text-white rounded-lg shadow-lg">
  🚀 Hello from pixri CSS!
</div>

🎨 Features

✅ Utility-first classes (easy to remember) ✅ Responsive grid system ✅ Spacing, colors, typography, buttons out-of-the-box ✅ Beginner-friendly naming (like text-lg, bg-primary, btn) ✅ Works with npm and CDN ✅ Extendable with custom CSS


🖌 Usage Examples

Typography

<h1 class="text-4xl font-bold text-color-primary">Heading 1</h1>
<p class="text-base text-color-secondary">This is a paragraph using pixri CSS.</p>

Buttons

<button class="btn btn-primary">Primary</button>
<button class="btn btn-secondary">Secondary</button>
<button class="btn btn-danger">Danger</button>
<button class="btn btn-outline text-color-primary">Outline</button>

Grid

<div class="grid grid-cols-3 gap-4">
  <div class="p-2 bg-light text-color-dark">1</div>
  <div class="p-2 bg-light text-color-dark">2</div>
  <div class="p-2 bg-light text-color-dark">3</div>
</div>

Responsive

<div class="p-2 md:p-4 lg:p-8 bg-color-success text-color-light">
  Responsive Padding Example
</div>

Column Count

<div class="columns-3 col-gap-4">
  <p class="bg-light text-color-dark">Column 1</p>
  <p class="bg-light text-color-dark">Column 2</p>
  <p class="bg-light text-color-dark">Column 3</p>
</div>