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

@launch77-shared/lib-design-system

v1.2.0

Published

Launch77 Design System - Token-driven theming foundation for shadcn-based component libraries

Readme

@launch77-shared/lib-design-system

Token-driven design system providing a theming foundation for Launch77 applications. Built for seamless integration with shadcn/ui component libraries.

Installation

Recommended: Install via Launch77 plugin (handles all configuration automatically):

launch77 plugin:install design-system

Manual installation (not recommended):

npm install @launch77-shared/lib-design-system

Note: Manual installation requires configuring Tailwind preset and CSS imports yourself. The plugin automates this setup.

Features

  • 🎨 Semantic Token System - CSS custom properties in HSL format with alpha channel support
  • 🌗 Dark Mode - Complete dark mode support via .dark class
  • Tailwind Preset - Ready-to-use Tailwind configuration with theme extensions
  • Accessibility First - Auto-injected base styles with focus rings and reduced motion support
  • 🎬 Animations - 8 built-in keyframe animations (accordion, fade, slide)
  • 🎯 Brand Customization - Simple CSS cascade for per-app theming
  • 🔧 shadcn Compatible - Follows shadcn/ui token architecture

What's Included

Semantic Color Tokens

/* Available in light and dark modes */
--color-background / --color-foreground
--color-primary / --color-primary-foreground
--color-secondary / --color-secondary-foreground
--color-accent / --color-accent-foreground
--color-muted / --color-muted-foreground
--color-destructive / --color-destructive-foreground
--color-card / --color-card-foreground
--color-border
--color-input
--color-ring

Tailwind Utilities

All semantic colors available as Tailwind utilities with alpha channel support:

<div className="bg-primary/20 text-foreground border-input" />

Animations

8 pre-built animations: fade-in/out, slide-in (4 directions), accordion-up/down.

All animations automatically respect prefers-reduced-motion preferences.

Documentation

  • Complete Documentation - Comprehensive guide with:

    • Design system concepts and philosophy
    • How to build components with tokens
    • Token system reference
    • Architecture overview
    • Dark mode implementation details
    • TypeScript API reference
  • Plugin README - For installation and usage instructions:

    • Quick start guide
    • Usage examples (buttons, cards, forms)
    • Brand customization
    • Troubleshooting

Quick Reference

Using with Tailwind (if manually installed)

// tailwind.config.js
const preset = require('@launch77-shared/lib-design-system/preset')

module.exports = {
  presets: [preset],
  content: ['./src/**/*.{ts,tsx}'],
}

Importing Tokens (if manually installed)

/* globals.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

@import '@launch77-shared/lib-design-system/tokens.css';

HSL Color Format

Colors use HSL format for flexibility:

--color-primary: 222 47% 11%; /* Hue Saturation% Lightness% */

Benefits: Alpha channel support (bg-primary/20), easy to adjust, color picker compatible.

TypeScript Support

Full TypeScript definitions included for Tailwind configuration.

License

UNLICENSED - Internal Launch77 use only.