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

kz-design-system

v0.0.12

Published

Production-ready React design system

Downloads

653

Readme

kz-design-system

Production-ready React design system with tokens, themes (Standard / Neumorphic, Light / Dark), and accessible components.

Installation

From your app (not this repo), install the published package:

npm install kz-design-system

Or with pnpm:

pnpm add kz-design-system

Or with yarn:

yarn add kz-design-system

Peer dependencies: react and react-dom (^18.0.0 or ^19.0.0). Install them if they are not already in your project.

Updating to a new version

If you use a range (e.g. ^0.0.1), reinstall or update to get the latest:

pnpm update kz-design-system
# or
npm update kz-design-system
# or
yarn upgrade kz-design-system

To install a specific version (e.g. 0.0.2):

pnpm add [email protected]

Styles

Import the design system CSS once in your app (e.g. in your root layout or _app.tsx):

import "kz-design-system/styles.css";

Theme wrapper (KezelThemeProvider)

Wrap your app (or the part of the tree that uses the design system) with KezelThemeProvider so that theme (variant and mode) and optional token overrides are applied.

import { KezelThemeProvider, KezelVariant, KezelMode } from "kz-design-system";

function App() {
  return (
    <KezelThemeProvider variant={KezelVariant.Standard} mode={KezelMode.Light}>
      {/* Your app */}
    </KezelThemeProvider>
  );
}
  • variant: KezelVariant.Standard (flat) or KezelVariant.Neumorphic (soft shadows).
  • mode: KezelMode.Light or KezelMode.Dark.

You can switch theme at runtime by changing variant and mode (e.g. from state or context).

Optional token overrides

Pass a tokens object to override design tokens (e.g. colors, radii):

<KezelThemeProvider
  variant={KezelVariant.Standard}
  mode={KezelMode.Dark}
  tokens={{
    "color.brand.primary": "#18AB9F",
    "component.button.radius": "8px",
  }}
>
  {/* Your app */}
</KezelThemeProvider>

Token keys are defined in the design system; use the same keys as in the theme token tables.

Usage

Import components and icons from the main entry:

import {
  Button,
  KezelThemeProvider,
  KezelVariant,
  KezelMode,
  Icon,
  IconName,
  DropdownButton,
  Table,
} from "kz-design-system";

Subpath imports are also supported (e.g. for smaller bundles or explicit entry points):

import { DropdownButton } from "kz-design-system/dropdown";
import { Icon, IconName } from "kz-design-system/icon";

Package structure

  • Button, ToggleButton, Checkbox, RadioButton – form and action controls
  • Typography, TextInput – text and inputs
  • Dropdown, DropdownButton, Dialog – overlays and menus
  • Table – data table with selection, sort, pagination, actions
  • Tabs, Tooltip, SideMenu, Sidesheet, NavButton – layout and navigation
  • Icon, iconRegistry, IconName – icon set
  • KezelThemeProvider, KezelVariant, KezelMode – theme and tokens

All components live under packages/ui/src/components/ and consume design tokens from the theme provider.