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

instincthub-css

v1.0.1

Published

InstinctHub Global CSS Library

Readme

InstinctHub CSS

A lightweight, responsive CSS library designed for modern web applications. InstinctHub CSS provides a clean foundation with thoughtfully crafted components and utilities for rapid development.

npm version license downloads

Features

  • 🎨 Clean, minimal design system
  • 📱 Responsive grid layout
  • 🧩 Ready-to-use components
  • 🔄 Customizable with CSS variables
  • 🚀 Lightweight with no dependencies
  • 🌐 Cross-browser compatible

Installation

npm

npm install instincthub-css

yarn

yarn add instincthub-css

pnpm

pnpm add instincthub-css

Usage

In JavaScript Applications

Import in JavaScript/TypeScript

// In your main JS/TS file
import 'instincthub-css';

Import in CSS/SCSS

/* In your CSS file */
@import 'instincthub-css';

Import Specific Path

import 'instincthub-css/dist/instincthub.css';

In HTML

<!-- Using a local copy -->
<link rel="stylesheet" href="node_modules/instincthub-css/dist/instincthub.css">

<!-- Using CDN (unpkg) -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/instincthub.css">

<!-- Using CDN (jsDelivr) -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/instincthub.css">

Components & Utilities

Layout

Container

<div class="container">
  <!-- Your content here -->
</div>

Elements

Buttons

<button class="default-btn">Default Button</button>
<button class="primary-btn">Primary Button</button>
<button class="important-btn">Important Button</button>
<button class="danger-btn">Danger Button</button>
<button class="outlined-btn">Outlined Button</button>

Customization

InstinctHub CSS uses CSS custom properties (variables) for easy customization:

:root {
  --DarkCyan: #00838f;
  --TurkishRose: #bc658d;
  --Gunmetal: #2c333a;
  --ViridianGreen: #009ba2;
  --White: #ffffff;
  --Danger: #ea5f5e;
  --FadeGlass: #ffffffe6;

  --Rhythm: #69779b;
  --CaribbeanGreen: #00c5a2;
  --OldLavender: #756c83;
  --AmericanPurple: #432160;
  --ChineseBlue: #415b90;
  --DarkSlateGray: #314a52;
  --MaximumRedPurple: #a03c78;
  --DarkLavender: #6f539b;
  --MetallicBlue: #3c5186;
  --TiffanyBlue: #0fabbc;
  --PoliceBlue: #394a6d;
  --Corn: #fbeb5b;
  --LimeGreen: #4be133;
  --OldRose: #394a6d;
  --Magnolia: #f4f3fe;
  --ChineseSilver: #cccccc;
  --LavenderGray: #c5c0db;
  --Main-Gradient: linear-gradient(79.85deg, #009ba2 -20.87%, #bc658d 87.74%);
  --Dark-Gradient: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(33, 33, 33, 1) 35%,
    rgba(79, 79, 79, 1) 100%
  );
  --blue: rgb(26, 57, 87);
  --white: rgb(236, 236, 236);
  --DeepGreen-CyanTurquoise: #206d62;
  --Nunito: "Nunito", sans-serif;
  --Gray: #f4f4f4;
  --filter: none;
  --Montserat: "Montserrat", sans-serif;
  --shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  --overlay: rgba(44, 51, 58, 0.2);
  --lightShadow: 0px 1px 8px rgba(0, 0, 0, 0.2);
  --borderDefault: 1px solid rgba(44, 51, 58, 0.2);
  --nesgBlue: #083e9e;
  --nesgBlueOpacity: #083f9e9c;
  --main-color: #f857a6;
  --second-color: #ff5858;
  --OpacityBackground: #7d7c7c20;
}

Browser Support

InstinctHub CSS supports all modern browsers:

  • Chrome (latest)
  • Firefox (latest)
  • Safari (latest)
  • Edge (latest)
  • Opera (latest)

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Development

# Clone the repository
git clone https://github.com/instincthub/instincthub-css.git

# Navigate to the directory
cd instincthub-css

# Install dependencies
npm install

# Build the package
npm run build

License

This project is licensed under the MIT License - see the LICENSE file for details.

Author

Noah Olatoye

Acknowledgments

  • Inspired by modern CSS frameworks and design systems
  • Developed with love at InstinctHub

Made with ❤️ by the InstinctHub team