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

kitecss

v7.0.3

Published

A comprehensive, responsive component library plugin for Tailwind CSS v4

Downloads

56

Readme

KiteCSS: A Modern Component Library Plugin for Tailwind CSS

npm version License: MIT

KiteCSS is a comprehensive component library reimagined as a Tailwind CSS plugin. It seamlessly integrates a collection of over 60 professionally designed, responsive, and fully customizable components directly into your Tailwind workflow.

By leveraging the plugin architecture and Tailwind v4's modern engine, KiteCSS ensures that only the CSS you actually use is included in your final build, providing an optimized, "zero-bundle-size" component experience.


Features

  • 60+ Components: From simple buttons and badges to complex accordions and carousels.
  • Fully Responsive: Components are designed to work beautifully on all screen sizes.
  • Zero Configuration: Works as a standard Tailwind plugin imported directly in your CSS file—no tailwind.config.js required.
  • Automatic Tree-Shaking: Only the components you use in your markup are generated in your final stylesheet.
  • Fully Customizable: All components are built with CSS variables that you can easily override using a standard @theme block.

Installation

Prerequisites

  • A project using Tailwind CSS v4 or newer.

Step 1: Install the Package

Install KiteCSS from the npm registry:

bun add kitecss
Step 2: Activate the Plugin in Your CSSIn your main CSS file, @import the tailwindcss engine and your new kitecss plugin. You can also define your content sources here./* src/input.css */

@import "tailwindcss";
@import "kitecss";

@source "./src/**/*.{html,js,jsx,ts,tsx}";
Usage ExampleSimply add the component classes to your HTML elements.<!-- Alert -->
<div class="alert alert-success">
  <span>Your profile was updated successfully!</span>
</div>

<!-- Button -->
<button class="btn btn-primary">Primary Button</button>

<!-- Card -->
<div class="card card-bordered w-96">
    <div class="card-body">
        <h3 class="card-title">KiteCSS Card</h3>
        <p>A beautifully integrated card component.</p>
        <div class="card-actions justify-end">
            <button class="btn btn-primary">Action</button>
        </div>
    </div>
</div>
Theme CustomizationTo override the default colors and radius values, add a @theme block to your main CSS file./* src/input.css */

@import "tailwindcss";
@import "kitecss";

@source "./src/**/*.html";

@theme {
  /* This will override the default --color-primary */
  --color-primary: #e11d48; /* Your brand's rose color */

  /* This will override the default --radius-md */
  --radius-md: 1rem;
}