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

@coolsday/polaron-design-system

v2.0.13

Published

A reusable and shareable React component library styled with Tailwind CSS. Built for teams and individuals who want consistent UI components and a custom Tailwind theme across multiple projects.

Readme

Polaron Design System

A reusable and shareable React component library styled with Tailwind CSS. Built for teams and individuals who want consistent UI components and a custom Tailwind theme across multiple projects.

✨ Features

  • ⚛️ React components with full TypeScript support
  • 🎨 Customizable Tailwind CSS theme
  • 📦 Build-ready with Rollup
  • 🪄 Easy to extend via Tailwind presets
  • 📁 Exported tailwind.config for consistent theming across apps

📦 Installation

npm install @coolsday/polaron-design-system

🚀 Usage

Import Components

import { Button } from '@coolsday/polaron-design-system';

function App() {
  return <Button>Click me</Button>;
}

🎨 Using the Shared Tailwind Config

To apply the design system’s theme in your project:

  1. Create a tailwind.config.js in your app root
  2. Use the preset from the design system
// tailwind.config.js
const designSystem = require('@coolsday/polaron-design-system/tailwind/tailwind.config');

module.exports = {
  presets: [designSystem],
  content: ['./src/**/*.{js,ts,jsx,tsx}'],
};

🧱 Folder Structure

@coolsday/polaron-design-system/
├── src/
│   ├── components/
│   │   └── Button.tsx
│   └── styles/
│       └── index.css
├── tailwind/
│   └── tailwind.config.js
├── package.json
├── tsconfig.json
├── postcss.config.js
└── rollup.config.js

🛠 Development

Install Dependencies

npm install

Build the Library

npm run build

This creates a production-ready build in the dist/ folder.


📦 Publishing to npm

  1. Make sure you're logged in:
npm login
  1. Publish the package:
npm publish --access public

🧩 Tailwind Theme (Preset)

Shared in tailwind/tailwind.config.js:

theme: {
  extend: {
    colors: {
      brand: {
        light: '#3ABFF8',
        DEFAULT: '#1E40AF',
        dark: '#1E3A8A',
      },
    },
    fontFamily: {
      sans: ['Inter', 'sans-serif'],
    },
  },
}

Usage in your app:

<div className="bg-brand text-white font-sans">Hello</div>

📘 Components

| Component | Description | | --------- | ---------------------------------------------- | | Button | A basic button component with Tailwind styling |


📄 License

MIT — © Polaron Solar Corp


🔗 Coming Soon (Optional)

  • [ ] Storybook integration
  • [ ] CI/CD with GitHub Actions
  • [ ] More reusable components (e.g. Input, Card, Modal)