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

nach-themes

v4.0.1

Published

Universal theme provider for React apps (Next.js & Vite)

Readme

nach-themes

Lightweight and flexible theme management library for React projects. Perfect for Next.js (App Router) and Vite. It allows you to easily switch between multiple themes (light, dark, or custom) and customize your UI experience without FOUC (Flash of Unstyled Content).

Features

  • No FOUC: Built-in script injection to prevent theme flashes before hydration.
  • ✅ Support for multiple themes (light, dark, system, or custom).
  • ✅ Seamless integration with Next.js App Router ("use client") and Vite.
  • ✅ Automatic system theme detection (prefers-color-scheme).
  • ✅ Persistent theme storage using localStorage.
  • ✅ Opt-in View Transitions API support for smooth theme switching animations.
  • ✅ Fully typed with TypeScript.

Installation

npm install nach-themes
# or
yarn add nach-themes
# or
pnpm add nach-themes

Usage

Next.js App Router Usage (Recommended)

In Next.js App Router, you should add suppressHydrationWarning to your <html> tag. Because i7a-themes injects a script to apply the theme class immediately (to prevent FOUC), React will complain if the server-rendered HTML doesn't match the client-modified HTML. The provider itself also uses "use client".

// app/layout.tsx
import { ThemeProvider } from "i7a-themes";
import "./globals.css";

export default function RootLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return (
    <html lang="en" suppressHydrationWarning>
      <body>
        <ThemeProvider attribute="class" defaultTheme="system" enableSystem>
          {children}
        </ThemeProvider>
      </body>
    </html>
  );
}

Vite / Generic React Usage

Wrap your main component with the ThemeProvider:

// main.tsx
import React from "react";
import ReactDOM from "react-dom/client";
import { ThemeProvider } from "i7a-themes";
import App from "./App";
import "./index.css";

ReactDOM.createRoot(document.getElementById("root")!).render(
  <React.StrictMode>
    <ThemeProvider attribute="class" defaultTheme="system" enableSystem>
      <App />
    </ThemeProvider>
  </React.StrictMode>,
);

CSS Custom Properties

i7a-themes supports using CSS variables for dynamic theming with Tailwind CSS or Vanilla CSS.
You can define variables for colors, fonts, or any other property and switch them depending on the theme.

Tailwind 4

@import "tailwindcss";

:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(222, 47%, 11%);
}

.dark {
  --background: hsl(225, 15%, 5%);
  --foreground: #f8fafc;
}

/* Inline theme mapping for i7a-themes */
@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
}

body {
  @apply bg-background text-foreground;
}

Vanilla CSS

:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(222, 47%, 11%);
}

.dark {
  --background: hsl(225, 15%, 5%);
  --foreground: #f8fafc;
}

body {
  background-color: var(--background);
  color: var(--foreground);
}

Accessing the Theme

Use the useTheme hook to access or update the current theme:

"use client"; // If in Next.js

import { useTheme } from "i7a-themes";

export default function ThemeSwitcher() {
  const { theme, resolvedTheme, setTheme, themes } = useTheme();

  return (
    <div>
      <p>Current theme: {theme}</p>
      <p>Resolved theme: {resolvedTheme}</p>

      {themes.map((t) => (
        <button key={t} onClick={(e) => setTheme(t, e)}>
          {t}
        </button>
      ))}
    </div>
  );
}

Note: Passing the event e to setTheme(t, e) will trigger the experimental View Transitions API animation if supported by the browser.

Available Themes

  • light – Light mode
  • dark – Dark mode
  • system – Matches the user's OS preference
  • Custom themes – Extend the default theme list as needed