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

buildkit-css

v1.0.4

Published

A Highly Customizable Utility-First CSS Framework

Readme

BuildKit-CSS

BuildKit-CSS is a lightweight, utility-first CSS library designed for rapid UI development. It provides a set of utility classes, theming support, and prebuilt components like accordions, dialogs, cards, buttons, grids, and more. This library works with vanilla HTML, React, and Next.js.

Features

  • Utility-First Approach – Similar to Tailwind CSS, with customizable spacing, typography, flex, and grid utilities.
  • Prebuilt Components – Includes accordion, dialog, card, buttons.
  • Theming Support – Customizable via SCSS variables and buildkit.config.js.
  • Responsive Breakpoints – Mobile-first design with predefined breakpoints.
  • Accessibility Focused – ARIA roles, keyboard navigation, and high contrast support.
  • Lightweight & Customizable – Works out of the box or can be tailored to project needs.

Installation

npm install buildkit-css

After installation, import the CSS and JavaScript files from the dist folder:

   import 'buildkit-css/dist/buildKit.css';
   import 'buildkit-css/dist/main.js';

Or include it via CDN:

<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/buildkit-css@latest/dist/buildKit.css"
/>
<script href="https://cdn.jsdelivr.net/npm/buildkit-css@latest/dist/main.js" />

Usage

Using Utility Classes

<div
  class="flex justify-center p-[4px] bg-primary text-white font-s-[10px] font-w-[50px]"
>
  Welcome to BuildKit-CSS
</div>

Using Components

Accordion

<div class="accordion">
  <div class="accordion-item">
    <input type="checkbox" id="acc1" class="accordion-toggle" />
    <label class="accordion-header" for="acc1">Section 1</label>
    <div class="accordion-content">
      <p>This is the content of section 1.</p>
    </div>
  </div>
  <div class="accordion-item">
    <input type="checkbox" id="acc2" class="accordion-toggle" />
    <label class="accordion-header" for="acc2">Section 2</label>
    <div class="accordion-content">
      <p>This is the content of section 2.</p>
    </div>
  </div>
  <div class="accordion-item">
    <input type="checkbox" id="acc3" class="accordion-toggle" />
    <label class="accordion-header" for="acc3">Section 3</label>
    <div class="accordion-content">
      <p>This is the content of section 3.</p>
    </div>
  </div>
</div>

Theming

BuildKit-CSS allows customization via SCSS variables or a config file:

$primary-color: #007bff;
$border-radius: 8px;

OR using buildkit.config.js:

module.exports = {
  spacingValues: {
    sm: "4px",
    md: "8px",
    lg: "16px",
  },
  colors: {
    primary: "#007bff",
    secondary: "#6c757d",
  },
  breakpoints: {
    sm: "576px",
    md: "768px",
    lg: "992px",
  },
};

Storybook

To explore components visually, run:

npm run storybook

Explore the documentation here: BuildKit-CSS Docs(https://setubisht.github.io/BuildKit-CSS/?path=/docs/buildkit-css--docs)