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

pandacss-preset-radix-colors

v0.2.1

Published

Brings Radix Colors to 🐼 PandaCSS

Readme

🐼 PandaCSS preset for Radix Colors

Downloads Contributors Forks Stargazers Issues MIT License

Brings Radix Colors to 🐼 PandaCSS

A PandaCSS preset that integrates all Radix UI colors with support for dark mode, DCI-P3 wide color gamut, and customizable color scale filtering.

npmGitHubIssues

Table of Contents

Installation

npm install --save-dev pandacss-preset-radix-colors @radix-ui/colors

[!NOTE] Peer Dependencies: This preset requires @pandacss/dev (>=0.0.1) and @radix-ui/colors (>=0.1.0) to be installed.

Usage

Add the preset to your PandaCSS configuration (panda.config.ts)

import { defineConfig } from "@pandacss/dev";
import radixColorsPreset from "pandacss-preset-radix-colors";

export default defineConfig({
  presets: [
    radixColorsPreset(),
    "@pandacss/preset-panda", // Re-add to keep default PandaCSS tokens
  ],
});

[!IMPORTANT] Don't forget to re-add @pandacss/preset-panda to your presets array if you want to keep PandaCSS's default keyframes, breakpoints, tokens, and text styles.

[!NOTE] Token Structure: Colors use dot-notation paths (e.g., colors.blue.1, colors.blue.dark.a.1, colors.blue.p3.1). All scales have 12 shades (1-12). When dark mode or P3 is enabled, tokens automatically use conditional values. Learn more about conditions.

Options

Dark mode

Enable dark mode to automatically switch between light and dark color variants.

// Boolean: uses default ".dark &" condition
radixColorsPreset({ darkMode: true })

// Custom condition
radixColorsPreset({
  darkMode: {
    condition: "[data-theme='dark'] &", // or "@media (prefers-color-scheme: dark) &"
  },
})

// Disable programmatically
radixColorsPreset({
  darkMode: { condition: ".dark &", enabled: false },
})

When enabled, base colors automatically switch to dark variants when the condition is met. A light variant is also added to keep colors light in dark contexts.

Color scales

[!TIP] Filter color scales to reduce bundle size. This is especially useful if you only need a subset of colors.

Uses hierarchical path-based filtering—specifying a path includes all variants beneath it.

radixColorsPreset({
  colorScales: ["gray", "blue"], // Includes all variants of gray and blue
})

radixColorsPreset({
  colorScales: ["amber.dark", "blue.p3"], // Only dark amber and P3 blue variants
})

Examples: "amber" includes all variants; "amber.dark" includes amber.dark.*; "amber.dark.p3" includes amber.dark.p3.*. Omit or use [] to include all scales.

[!WARNING] Invalid color scale paths will trigger console warnings during preset initialization. Double-check your paths to avoid typos.

Auto DCI-P3

Automatically use DCI-P3 wide color gamut variants when supported.

[!NOTE] When both dark mode and autoP3 are enabled, dark mode takes precedence. P3 variants are only applied when dark mode is not active.

radixColorsPreset({ autoP3: true })

The _p3 modifier becomes available in style objects. P3 condition is always added (even when autoP3: false) for manual use.

Examples

// Basic setup
radixColorsPreset()

// Combined options
radixColorsPreset({
  darkMode: { condition: "[data-theme='dark'] &" },
  autoP3: true,
  colorScales: ["gray", "blue", "red"],
})

Development

Testing

The project uses Bun test runner for testing. The test suite covers all the main functionality of the preset.

To run the tests:

# Run tests once
bun test

# Run tests in watch mode
bun run test:watch

# Run tests with coverage report
bun run test:coverage

Attributions