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

@birhaus/themes

v3.0.1

Published

BIRHAUS Design System Themes - Pre-built theme configurations for specific industries and use cases

Readme

@birhaus/themes

Industry-specific themes for the BIRHAUS design system with cognitive load optimized color palettes.

Installation

npm install @birhaus/themes

Available Themes

Financial Theme

Optimized for financial applications and church administration.

import { financialTheme } from '@birhaus/themes'

// Colors designed for financial data clarity
const theme = {
  colors: {
    primary: '#0F766E',      // Trustworthy teal
    success: '#059669',      // Positive financial green
    warning: '#D97706',      // Attention amber
    error: '#DC2626',        // Alert red
    background: '#F8FAFC',   // Clean background
    surface: '#FFFFFF',      // Pure surface
    textPrimary: '#1F2937',  // High contrast text
    textSecondary: '#6B7280' // Supporting text
  }
}

Healthcare Theme

Designed for medical and wellness applications.

import { healthcareTheme } from '@birhaus/themes'

// Calming blues and clinical whites
const medicalApp = (
  <BirhausProvider theme={healthcareTheme}>
    <HealthDashboard />
  </BirhausProvider>
)

Education Theme

Vibrant theme for educational platforms.

import { educationTheme } from '@birhaus/themes'

// Engaging colors for learning environments
const learningPlatform = (
  <BirhausProvider theme={educationTheme}>
    <StudentDashboard />
  </BirhausProvider>
)

Usage

With BirhausProvider

import { BirhausProvider } from '@birhaus/provider'
import { financialTheme } from '@birhaus/themes'

function App() {
  return (
    <BirhausProvider theme={financialTheme}>
      <YourApp />
    </BirhausProvider>
  )
}

CSS Custom Properties

Each theme provides CSS variables for integration:

/* Financial theme variables */
:root {
  --birhaus-primary: #0F766E;
  --birhaus-success: #059669;
  --birhaus-warning: #D97706;
  --birhaus-error: #DC2626;
  --birhaus-background: #F8FAFC;
}

Color Psychology

Financial Theme

  • Teal Primary: Conveys trust and stability
  • Green Success: Positive financial outcomes
  • Amber Warning: Attention without panic
  • High Contrast: Accessible for data-heavy interfaces

Healthcare Theme

  • Calming Blues: Reduce anxiety in medical settings
  • Clean Whites: Clinical and professional
  • Soft Grays: Gentle on the eyes for long sessions

Education Theme

  • Vibrant Orange: Stimulates learning and creativity
  • Warm Colors: Create engaging learning environments
  • Good Contrast: Accessibility for all learners

Cognitive Load Optimization

All themes follow BIRHAUS principles:

  • Limited Color Palette: Maximum 5-7 semantic colors
  • High Contrast Ratios: WCAG AAA compliance where possible
  • Consistent Semantics: Same meaning across all themes
  • Cultural Sensitivity: Appropriate for Spanish-speaking users

Customization

Create custom themes extending base patterns:

import { createBirhausTheme } from '@birhaus/themes'

const customTheme = createBirhausTheme({
  colors: {
    primary: '#your-brand-color',
    // ... other overrides
  },
  typography: {
    // Custom font stacks
  }
})

Real-world Applications

  • IPU PY Admin: Financial theme for church administration
  • Hospital Systems: Healthcare theme for patient management
  • School Platforms: Education theme for student portals

License

MIT - see LICENSE for details.