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

@strato-css/react

v1.1.0

Published

React integration for Strato CSS framework

Readme

@strato-css/react

React integration for Strato CSS framework. Provides React hooks and components for using Strato CSS in React applications.

Installation

pnpm add @strato-css/react

Usage

useStrato Hook

The useStrato hook allows you to dynamically generate CSS classes in your React components.

import { useStrato } from '@strato-css/react';

function MyComponent() {
  const classes = useStrato('p-4 bg-white rounded shadow');

  return <div className={classes}>Hello Strato CSS!</div>;
}

useStratoTheme Hook

Access theme values in your components.

import { useStratoTheme } from '@strato-css/react';

function ThemedComponent() {
  const theme = useStratoTheme();

  return (
    <div style={{ color: theme.colors.primary }}>
      Primary color
    </div>
  );
}

useStratoStyle Hook

Generate CSS styles object from utility classes.

import { useStratoStyle } from '@strato-css/react';

function StyledComponent() {
  const style = useStratoStyle('p-4 m-2 bg-white');

  return <div style={style}>Styled with utilities</div>;
}

StratoProvider

Configure Strato CSS at the app level.

import { StratoProvider } from '@strato-css/react';

function App() {
  return (
    <StratoProvider
      theme={{
        colors: {
          primary: '#3b82f6'
        }
      }}
    >
      <YourApp />
    </StratoProvider>
  );
}

Hooks Reference

useStrato

Generate CSS classes from utility strings.

const classes = useStrato('p-4 bg-white rounded');

Parameters:

  • utilities: String or array of utility strings

Returns:

  • CSS class names as a string

useStratoTheme

Access the theme configuration.

const theme = useStratoTheme();

Returns:

  • Theme object with colors, spacing, typography, etc.

useStratoStyle

Generate inline styles from utilities.

const style = useStratoStyle('p-4 m-2 bg-white');

Parameters:

  • utilities: String or array of utility strings

Returns:

  • React CSSProperties object

Examples

Dynamic Classes

function Button({ variant = 'primary', size = 'md' }) {
  const classes = useStrato([
    'px-4 py-2 rounded font-semibold transition',
    variant === 'primary' && 'bg-primary text-white hover:bg-primary-600',
    variant === 'secondary' && 'bg-gray-200 text-gray-800 hover:bg-gray-300',
    size === 'sm' && 'text-sm px-3 py-1',
    size === 'lg' && 'text-lg px-6 py-3'
  ].filter(Boolean));

  return <button className={classes}>Click me</button>;
}

Theme Access

function Card({ title }) {
  const theme = useStratoTheme();

  return (
    <div
      style={{
        padding: theme.spacing[4],
        borderRadius: theme.borderRadius.lg,
        boxShadow: theme.boxShadow.md
      }}
    >
      <h2>{title}</h2>
    </div>
  );
}

Inline Styles

function Box() {
  const style = useStratoStyle('flex items-center justify-between p-4 bg-white');

  return <div style={style}>Content</div>;
}

JSX Runtime

For React 17+ with new JSX transform:

// No need to import React
import { StratoProvider } from '@strato-css/react/jsx-runtime';

function App() {
  return (
    <StratoProvider>
      <div className="p-4 bg-white">Hello</div>
    </StratoProvider>
  );
}

Development

Testing

# Run all tests
pnpm test

# Run tests in watch mode
pnpm test --watch

# Run tests with UI
pnpm test:ui

# Run tests with coverage
pnpm test:coverage

Build

# Build the package
pnpm build

# Build in watch mode
pnpm dev

Type Checking

# Run TypeScript type checking
pnpm typecheck

License

MIT