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

@butopen/design-system

v1.1.5

Published

A pure SCSS and Tailwind Design System. No JS. Framework agnostic

Downloads

69

Readme

ButOpen Design System

A pure SCSS and Tailwind Design System. No JS. Framework-agnostic

Why another design system

There are many design systems out there. Unfortunately the only weay we found for a design system to be completely reusable is to publish it with styles only.

Using only styles, you can quickly integrate it into any framework.

Now you're thinking: "ok, but what if I want a date component with some logic?" Well, then we expose the few useful functions to speed up the implementation of that specific component into your frontend framework.

If you want to use it as CSS

Add the css file and customize the main color:


<link rel="stylesheet" href="https://unpkg.com/@butopen/[email protected]/dist/index.css">
<style>
    :root {
        --bo-theme-color: #0085d7; /* choose your color here*/
    }
</style>

If you want to use it as SCSS

  • import it into your style.scss
@import 'node_modules/@butopen/design-system/src/index';

:root {
  --bo-theme-color: #ff4d00;
}
  • extend your tailwind configuration to support the primary color classes such as text-bop, border-bop and so on:
const tw = require('@butopen/design-system/tailwind.config');

module.exports = {
  mode: 'jit',
  important: true,
  content: ['./src/styles.scss', './src/**/*.{html,ts,scss}'],
  theme: {
    extend: { ...tw.theme.extend }
  },
  variants: {
    extend: {}
  },
  plugins: []
};

You can then customize every class by adding your custom rules.

Below you can find an example:


.bo-tab {
  @apply text-sm uppercase;
}

a {
  @extend .bo-link;
  @apply text-bop; // <-- note the usage of the primary color here
}

.bo-section {
  @apply rounded border border-bop p-8;// <-- note the usage of the primary color for the border here
}

.bo-button {
  @extend .bo-animate-bg-on-hover // here we enable some cool animations for every button
}

.bo-input {
  @apply bg-gray-50 hover:shadow-sm
}

.form-error {
  @apply text-red-500 text-sm;
  &:before {
    content: "*";
    @apply mr-1
  }
}

For developers wanting to customize the sources

  1. Install the required packages pnpm i

Yes, we use pnpm. if you're still using NPM, then you don't care about time how much as we do ;-)

If you want to save hours, do yourself a favour and install it https://pnpm.io/

  1. Build from sources To build the final CSS file, simply run pnpm build

And if you want to extend it or try it live, run pnpm start

  1. Check the result And open the index.html file into your browser.