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

@wizardbeard/radiant-react-ui

v0.1.2

Published

A modern synthwave-themed React component library built with Tailwind CSS

Readme

Radiant React Design System

A modern, synthwave-inspired React component library featuring dark themes, neon glows, and retro-futuristic aesthetics. Built with React, TypeScript, Tailwind CSS, and fully documented in Storybook.

npm version Storybook

✨ Features

  • 🎨 Synthwave Aesthetic - Dark themes with electric blues, neon glows, and grainy textures
  • 🧩 50+ Components - Comprehensive collection built on Radix UI primitives
  • 📖 Full Storybook Docs - Interactive examples and usage guidelines
  • 🎯 TypeScript First - Full type safety and IntelliSense support
  • Tailwind CSS - Utility-first styling with semantic design tokens
  • Accessible - WCAG compliant components with keyboard navigation
  • 🎭 Customizable - Easy theming through CSS variables

📦 Installation

npm install @wizardbeard/radiant-react-ui

Peer Dependencies

Make sure you have these installed:

npm install react react-dom

🚀 Quick Start

1. Import Styles

Add the component styles to your app's entry point (e.g., main.tsx or App.tsx):

import '@wizardbeard/radiant-react-ui/dist/style.css';

2. Configure Tailwind

Update your tailwind.config.ts to include the design system's paths:

export default {
  content: [
    './src/**/*.{js,jsx,ts,tsx}',
    './node_modules/@wizardbeard/radiant-react-ui/dist/**/*.js'
  ],
  theme: {
    extend: {
      colors: {
        border: "hsl(var(--border))",
        background: "hsl(var(--background))",
        foreground: "hsl(var(--foreground))",
        primary: {
          DEFAULT: "hsl(var(--primary))",
          foreground: "hsl(var(--primary-foreground))"
        },
        // ... add other semantic tokens
      }
    }
  }
}

3. Add CSS Variables

Include these CSS variables in your index.css:

:root {
  --background: 220 40% 5%;
  --foreground: 210 40% 98%;
  --primary: 199 100% 50%;
  --primary-foreground: 220 40% 5%;
  /* ... see full token list in Storybook docs */
}

4. Use Components

import { Button, Card, CardHeader, CardTitle, CardContent } from '@wizardbeard/radiant-react-ui';

function App() {
  return (
    <Card>
      <CardHeader>
        <CardTitle>Welcome to Radiant</CardTitle>
      </CardHeader>
      <CardContent>
        <Button variant="default">Get Started</Button>
      </CardContent>
    </Card>
  );
}

📚 Documentation

Storybook

Browse the full component library with interactive examples:

View Storybook Documentation

The Storybook includes:

  • Component API documentation
  • Interactive props controls
  • Usage examples and code snippets
  • Design guidelines and best practices
  • Theming and customization guides

Available Components

  • Form Controls: Button, Input, Textarea, Select, Checkbox, Switch, Radio, Slider
  • Data Display: Card, Table, Badge, Avatar, Tooltip, Progress, Skeleton
  • Navigation: Tabs, Breadcrumb, Dropdown Menu, Navigation Menu, Sidebar
  • Feedback: Alert, Dialog, Toast, Alert Dialog, Drawer, Sheet
  • Layout: Separator, Scroll Area, Resizable, Aspect Ratio
  • Advanced: Command, Context Menu, Hover Card, Popover, Calendar, Date Picker

🎨 Theming

The design system uses semantic color tokens that can be customized through CSS variables. All colors use HSL format for easy manipulation.

:root {
  /* Primary colors */
  --primary: 199 100% 50%;        /* Electric blue */
  --secondary: 280 80% 60%;       /* Purple */
  --accent: 180 100% 50%;         /* Cyan */
  
  /* State colors */
  --destructive: 340 100% 60%;    /* Neon pink/magenta */
  --success: 142 76% 36%;
  --warning: 38 92% 50%;
  
  /* Effects */
  --noise-opacity: 0.03;
  --glow-intensity: 0.6;
}

See the Theming Guide for complete customization options.

🛠 Development

Prerequisites

  • Node.js 18+ and npm
  • React 18+

Setup

# Clone the repository
git clone https://github.com/wizardbeard/radiant-react-ui.git
cd radiant-react-ui

# Install dependencies
npm install

# Run Storybook
npm run storybook

# Build the library
npm run build:lib

# Build Storybook for deployment
npm run build-storybook

Project Structure

radiant-react-ui/
├── src/
│   ├── components/ui/     # Component library
│   ├── stories/           # Storybook stories
│   ├── pages/             # Demo pages
│   └── index.css          # Design tokens
├── .storybook/            # Storybook configuration
└── dist/                  # Built library output

🤝 Contributing

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

📄 License

MIT © 2025 The Wizard & The Wyrd, LLC

🔗 Links


Built with ⚡ by The Wizard & The Wyrd, LLC