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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@ttoss/theme

v2.7.5

Published

Theme for packages.

Readme

@ttoss/theme

Pre-built themes and theme creation utilities for the ttoss Design System. Provides complete visual personalities for React applications using design tokens and Theme UI integration.

Installation

pnpm add @ttoss/theme @ttoss/react-icons

Quick Start

1. Use Pre-built Theme

import { ThemeProvider } from '@ttoss/ui';
import { BruttalTheme } from '@ttoss/theme/Bruttal';

export const App = () => (
  <ThemeProvider theme={BruttalTheme}>
    <YourAppContent />
  </ThemeProvider>
);

2. Create Custom Theme

import { createTheme } from '@ttoss/theme';

export const MyTheme = createTheme({
  colors: {
    primary: '#007acc',
    secondary: '#6c757d',
    background: '#ffffff',
    text: '#212529',
  },
  fonts: {
    body: '"Inter", sans-serif',
    heading: '"Poppins", sans-serif',
  },
});

Available Themes

Bruttal Theme

Bold, high-contrast design with sharp aesthetics

import { BruttalTheme, BruttalFonts, BrutalIcons } from '@ttoss/theme/Bruttal';

// Complete theme with semantic tokens
<ThemeProvider theme={BruttalTheme}>

// Typography: Atkinson Hyperlegible, Work Sans
// Colors: Deep charcoal (#292C2a), bright blue (#0469E3)
// Style: Minimal border radius, sharp corners

Oca Theme

Soft, friendly design with rounded elements

import { OcaTheme, OcaFonts, OcaIcons } from '@ttoss/theme/Oca';

// Soft contrasts and warm palette
<ThemeProvider theme={OcaTheme}>

// Typography: Source Sans Pro, approachable fonts
// Colors: Soft black (#111827), bright green (#03FF7A)
// Style: Generous border radius, comfortable spacing

Default Theme

Foundation theme with core tokens only

import { defaultTheme } from '@ttoss/theme/default';

// Base tokens without semantic mapping
// Use as foundation for custom themes

Theme Structure

Each theme provides:

  • Core Tokens: Colors, typography, spacing, sizing
  • Semantic Tokens: Context-specific token mappings (action, navigation, feedback)
  • Component Styles: Pre-configured component variants
  • Global Styles: Base styles for HTML elements
  • Font Integration: Web font loading and fallbacks
  • Icon Integration: Icon library configuration

API Reference

createTheme(theme, base?)

Creates a new theme by merging configuration with a base theme.

import { createTheme, defaultTheme } from '@ttoss/theme';

const customTheme = createTheme(
  {
    // Your theme overrides
    colors: { primary: '#custom-color' },
  },
  defaultTheme
); // Optional base theme

Parameters:

  • theme: Theme - Theme configuration object
  • base?: Theme - Base theme to extend (defaults to defaultTheme)

Returns: Complete Theme object for use with ThemeProvider

Advanced Usage

Custom Theme Development

import { createTheme } from '@ttoss/theme';

export const BrandTheme = createTheme({
  // 1. Define core brand values
  colors: {
    primary: '#your-brand-primary',
    secondary: '#your-brand-secondary',
  },

  // 2. Configure semantic tokens
  colors: {
    action: {
      background: {
        primary: { default: 'primary' },
        secondary: { default: 'secondary' },
      },
    },
  },

  // 3. Customize component styles
  buttons: {
    primary: {
      backgroundColor: 'action.background.primary.default',
      borderRadius: 'lg',
    },
  },
});

Font and Icon Integration

import { BruttalTheme, BruttalFonts } from '@ttoss/theme/Bruttal';

// Fonts are automatically loaded when using pre-built themes
// For custom themes, handle font loading separately

export const App = () => (
  <ThemeProvider theme={BruttalTheme} fonts={BruttalFonts}>
    <YourApp />
  </ThemeProvider>
);

Integration

Related Packages