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

convergence-ui

v1.3.0

Published

This package converts your websites styles according to your requirements on a development phase project.

Readme

Convergence UI

A lightweight, powerful engine for real-time CSS theme generation and management. convergence-ui makes it effortless to create, preview, and export color themes for your web applications using modern OKLCH color spaces.

Features

  • 🎨 Real-time Theme Generation: Instantly visualize changes as you adjust colors.
  • 📐 OKLCH Color Space: Uses modern perceptual color models for consistent and vibrant palettes.
  • 🔄 Two-way Syncing: Initializes from your existing CSS variables.
  • 📦 Zero-Config UI Component: Includes a drop-in <Convergence /> component for an immediate theme editor overlay.
  • 💾 Presets: Built-in Light and Dark presets (easily extensible).
  • 📋 Export to CSS: One-click copy of generated CSS variables to your clipboard.

Installation

npm install convergence-ui
# or
yarn add convergence-ui
# or
pnpm add convergence-ui

Usage

1. The Comparison Component (Recommended)

The easiest way to use Convergence is to drop the <Convergence /> component into your application's root layout or a specific page. It provides a collapsible UI for tweaking your application's design tokens in real-time.

import { Convergence } from "convergence-ui";

export default function RootLayout({ children }) {
  return (
    <html lang="en">
      <body>
        {children}

        {/* Add the Convergence overlay */}
        <Convergence />
      </body>
    </html>
  );
}

The component will appear as a floating toggle button in the bottom-right corner of your screen.

2. Programmatic Usage

You can also use the underlying ConvergenceEngine to manipulate themes programmatically.

import { ConvergenceEngine, ThemeConfig } from "convergence-ui";

const myTheme: ThemeConfig = {
  // define your oklch colors here
  primary: { l: 0.5, c: 0.2, h: 250 },
  // ...
};

// Initialize the engine
const engine = new ConvergenceEngine(myTheme, { autoApply: true });

// Update a specific color
engine.setOklch("primary", { l: 0.6, c: 0.2, h: 250 });

Configuration

The <Convergence /> component accepts the following props:

| Prop | Type | Default | Description | | --------------- | ------------- | ------------ | ---------------------------------------------------------------------------------------------------------- | | initialConfig | ThemeConfig | DARK_THEME | The starting configuration for the theme editor. | | syncStart | boolean | true | If true, the editor will read the current CSS variables from the DOM on mount, overriding initialConfig. | | className | string | undefined | Optional CSS class for the wrapper element. |

Types

convergence-ui is written in TypeScript and exports all necessary types relative to its operation.

import { OklchColor, ThemeConfig, ThemeKey } from "convergence-ui";

// OklchColor structure
// { l: number; c: number; h: number; }

Presets

The package comes with standard Light and Dark presets out of the box.

License

ISC