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

@zooai/brand

v1.3.0

Published

Official brand assets and design system for Zoo

Readme

Zoo Brand

Official brand assets, design system, and guidelines for Zoo NGO.

Building the future of AI infrastructure

npm version License Downloads

🎨 Quick Start

Installation

# npm
npm install @zoo/brand

# pnpm
pnpm add @zoo/brand

# yarn
yarn add @zoo/brand

Usage

import { 
  colors, 
  logos, 
  typography, 
  ZooLogo,
  applyTheme 
} from '@zoo/brand'

// Use the logo component
<ZooLogo size="medium" variant="dark" />

// Apply brand colors
const primaryColor = colors.primary.DEFAULT
const backgroundColor = colors.background.DEFAULT

// Apply complete theme
applyTheme('dark')

📁 Repository Structure

@zoo/brand/
├── assets/              # Raw brand assets
│   ├── logo/           # Logo variations (SVG, PNG)
│   ├── icons/          # Brand icons
│   ├── images/         # Brand images and illustrations
│   └── graphics/       # Other graphics
├── fonts/              # Brand typography
│   ├── inter/          # Primary font
│   └── mono/           # Monospace font
├── styles/             # CSS and design tokens
│   ├── colors.css      # Color variables
│   ├── typography.css  # Typography styles
│   └── themes/         # Theme variations
├── src/                # Source code
│   ├── index.ts        # Main export
│   ├── colors.ts       # Color definitions
│   ├── typography.ts   # Typography config
│   ├── logos.tsx       # Logo components
│   └── utils.ts        # Helper functions
└── guidelines/         # Brand guidelines
    ├── visual.md       # Visual guidelines
    ├── voice.md        # Voice and tone
    └── usage.md        # Usage examples

🎨 Brand Colors

Primary Palette

| Color | Hex | Usage | |-------|-----|-------| | Primary | #0A0A0B | Main brand color, CTAs | | Secondary | #F5F5F5 | Supporting elements | | Accent | #3B82F6 | Interactive elements | | Success | #10B981 | Success states | | Warning | #F59E0B | Warning states | | Error | #EF4444 | Error states |

Using Colors

import { colors } from '@zoo/brand'

// In CSS-in-JS
const styles = {
  color: colors.primary.DEFAULT,
  backgroundColor: colors.background.light
}

// CSS Variables
// Automatically injected when using applyTheme()
// var(--zoo-primary)
// var(--zoo-secondary)
// var(--zoo-background)

🔤 Typography

Font Stack

  • Primary: Inter, system-ui, sans-serif
  • Monospace: 'JetBrains Mono', 'Fira Code', monospace
  • Display: Inter Display, Inter, sans-serif

Usage

import { typography } from '@zoo/brand'

// Get font family
const { fontFamily, fontSize, fontWeight } = typography

// Apply typography styles
const headingStyle = typography.heading.h1
const bodyStyle = typography.body.large

🖼️ Logo Usage

Logo Variants

The Zoo logo is available in multiple variants:

  • Full Logo: Complete logo with text
  • Mark Only: Icon mark without text
  • Horizontal: Horizontal layout
  • Stacked: Vertical stacked layout

React Component

import { ZooLogo } from '@zoo/brand'

// Basic usage
<ZooLogo />

// With options
<ZooLogo 
  variant="full"      // full | mark | horizontal | stacked
  size="medium"       // small | medium | large | xl
  theme="dark"        // light | dark | auto
  className="my-logo"
/>

Static Assets

import { logos } from '@zoo/brand'

// Get logo URLs
const logoUrl = logos.full.dark.svg
const markUrl = logos.mark.light.png

🎯 Design Tokens

import { tokens } from '@zoo/brand'

// Spacing
tokens.spacing.xs  // 4px
tokens.spacing.sm  // 8px
tokens.spacing.md  // 16px
tokens.spacing.lg  // 24px
tokens.spacing.xl  // 32px

// Border radius
tokens.radius.sm   // 4px
tokens.radius.md   // 8px
tokens.radius.lg   // 16px
tokens.radius.full // 9999px

// Shadows
tokens.shadow.sm
tokens.shadow.md
tokens.shadow.lg

🌙 Theming

Apply Theme

import { applyTheme, themes } from '@zoo/brand'

// Apply default theme
applyTheme()

// Apply specific theme
applyTheme('dark')
applyTheme('light')

// Get theme configuration
const darkTheme = themes.dark
const lightTheme = themes.light

Custom Theme

import { createTheme } from '@zoo/brand'

const customTheme = createTheme({
  colors: {
    primary: '#custom-color',
    // ... other colors
  },
  typography: {
    // ... typography config
  }
})

applyTheme(customTheme)

📋 Brand Guidelines

Voice and Tone

  • Professional: Clear, concise communication
  • Innovative: Forward-thinking and cutting-edge
  • Accessible: Inclusive and easy to understand
  • Trustworthy: Reliable and transparent

Visual Guidelines

  1. Logo Clear Space: Maintain minimum clear space equal to the height of the 'H' in Zoo
  2. Minimum Size: Logo should not be displayed smaller than 24px in height
  3. Color Usage: Use approved brand colors only
  4. Typography: Use Inter for all text, weights 400-700

Do's and Don'ts

DO

  • Use official brand assets
  • Maintain proper contrast ratios
  • Follow spacing guidelines
  • Keep consistent styling

DON'T

  • Modify logo proportions
  • Use off-brand colors
  • Create unofficial variations
  • Compress or stretch logos

🔗 Related Packages

📚 Resources

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

📄 License

MIT © Zoo NGO


WebsiteGitHubTwitter