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

@hawkbass/inclusive-design-core

v1.0.0

Published

Inclusive Design System - Core Components and Styles

Downloads

74

Readme

@inclusive-design/core

A comprehensive, accessible design system for modern React applications. Built with accessibility-first principles for recruitment and enterprise applications.

npm version License: MIT

Features

  • 102+ Components - Comprehensive UI component library
  • WCAG 2.1 AA Compliant - Built with accessibility at its core
  • Dark Mode Support - Seamless light/dark theme switching
  • Responsive - Mobile-first, works on all screen sizes
  • TypeScript - Full type safety and IntelliSense
  • Performance Optimized - Tree-shakeable, minimal bundle impact
  • Design Tokens - Consistent styling with CSS variables

Installation

# npm
npm install @inclusive-design/core

# yarn
yarn add @inclusive-design/core

# pnpm
pnpm add @inclusive-design/core

Quick Start

1. Import Styles

Add the styles to your app's entry point:

// app/layout.tsx or _app.tsx
import "@inclusive-design/core/styles.css"

2. Use Components

import { Button, ThemeProvider } from "@inclusive-design/core"

function App() {
  return (
    <ThemeProvider defaultTheme="dark">
      <Button className="bg-fuchsia-600 hover:bg-fuchsia-700">
        Get Started
      </Button>
    </ThemeProvider>
  )
}

Available Exports

Components

import { 
  Button,
  ThemeProvider,
  useTheme 
} from "@inclusive-design/core"

Utilities

import { cn } from "@inclusive-design/core"

// Merge Tailwind classes conditionally
cn("base-class", isActive && "active-class", className)

Design Tokens (CSS)

/* Import CSS custom properties */
@import "@inclusive-design/core/tokens.css";

Design Tokens (JavaScript)

For Tailwind CSS configuration:

// tailwind.config.js
const tokens = require("@inclusive-design/core/tokens")

module.exports = {
  theme: {
    extend: {
      colors: tokens.colors,
      fontFamily: tokens.fontFamily,
      borderRadius: tokens.borderRadius,
    }
  }
}

Design Tokens

Colors

The design system uses CSS custom properties for theming:

:root {
  --primary: 292 84% 61%;      /* Fuchsia brand color */
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  /* ... more tokens */
}

.dark {
  --background: 222.2 84% 4.9%;
  --foreground: 210 40% 98%;
  /* ... dark mode overrides */
}

Typography

  • Sans: Satoshi, system-ui
  • Mono: JetBrains Mono, monospace

Spacing

Based on an 8px grid system with semantic tokens.

Browser Support

  • Chrome (last 2 versions)
  • Firefox (last 2 versions)
  • Safari (last 2 versions)
  • Edge (last 2 versions)

Requirements

  • React 16.8.0 or higher
  • React DOM 16.8.0 or higher

License

MIT © hawkbass

Links