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 🙏

© 2024 – Pkg Stats / Ryan Hefner

radix-theme-generator

v0.1.1

Published

A utility for generating themes for the Radix Themes UI library

Downloads

446

Readme

radix-theme-generator

NPM version Actions Status PR Welcome

A simple, lightweight, and customizable library that allows you to generate Radix UI themes on the fly. It helps you create dynamic color scales and CSS variables for theming your applications using Radix UI colors.

Introduction

At its core, radix-theme-generator enables you to programmatically generate color scales and CSS variables based on Radix UI color scales, allowing you to create custom themes dynamically for your application.

Here is a minimal example of generating a theme with a custom accent color:

const accentValue = "#3D63DD"; // Your custom accent color

const result = generateRadixColors({
  appearance: "light",
  accent: accentValue,
  gray: "#8B8D98",
  background: "#FFFFFF",
});

const css = getColorScaleCss({
  isDarkMode: false,
  name: "blue",
  contrast: result.accentContrast,
  scale: result.accentScale,
  scaleWideGamut: result.accentScaleWideGamut,
  scaleAlpha: result.accentScaleAlpha,
  scaleAlphaWideGamut: result.accentScaleAlphaWideGamut,
  surface: result.accentSurface,
  surfaceWideGamut: result.accentSurfaceWideGamut,
});

// Output the CSS variables for your theme
console.log(css);

This outputs a set of CSS variables that can be used to theme your application.

Installation

Install this package with npm.

npm i radix-theme-generator

Usage

Here is a full example of generating both light and dark themes with custom accent and gray colors.

import {
  generateRadixColors,
  getColorScaleCss,
  getBackgroundColorCss,
} from "radix-theme-generator";

const accentValue = "#3D63DD"; // Your custom accent color
const grayValue = "#8B8D98"; // Your custom gray color
const lightBgValue = "#FFFFFF"; // Light theme background
const darkBgValue = "#111111"; // Dark theme background

// Generate light theme colors
const lightThemeColors = generateRadixColors({
  appearance: "light",
  accent: accentValue,
  gray: grayValue,
  background: lightBgValue,
});

// Generate dark theme colors
const darkThemeColors = generateRadixColors({
  appearance: "dark",
  accent: accentValue,
  gray: grayValue,
  background: darkBgValue,
});

// Get CSS variables for light theme
const lightThemeCss = getColorScaleCss({
  isDarkMode: false,
  name: "blue",
  contrast: lightThemeColors.accentContrast,
  scale: lightThemeColors.accentScale,
  scaleWideGamut: lightThemeColors.accentScaleWideGamut,
  scaleAlpha: lightThemeColors.accentScaleAlpha,
  scaleAlphaWideGamut: lightThemeColors.accentScaleAlphaWideGamut,
  surface: lightThemeColors.accentSurface,
  surfaceWideGamut: lightThemeColors.accentSurfaceWideGamut,
});

// Get CSS variables for dark theme
const darkThemeCss = getColorScaleCss({
  isDarkMode: true,
  name: "blue",
  contrast: darkThemeColors.accentContrast,
  scale: darkThemeColors.accentScale,
  scaleWideGamut: darkThemeColors.accentScaleWideGamut,
  scaleAlpha: darkThemeColors.accentScaleAlpha,
  scaleAlphaWideGamut: darkThemeColors.accentScaleAlphaWideGamut,
  surface: darkThemeColors.accentSurface,
  surfaceWideGamut: darkThemeColors.accentSurfaceWideGamut,
});

// Output the CSS variables
console.log(lightThemeCss);
console.log(darkThemeCss);

Generating Background Colors

You can also generate background color variables using the getBackgroundColorCss function:

const backgroundCss = getBackgroundColorCss({
  isDarkMode: false,
  background: lightThemeColors.background,
});

console.log(backgroundCss);

API

generateRadixColors(options)

Generates Radix UI color scales based on the provided options.

Parameters:

  • options.appearance: "light" or "dark" — Specifies the theme appearance.
  • options.accent: string — The base color for the accent color scale.
  • options.gray: string — The base color for the gray color scale.
  • options.background: string — The background color.

Returns:

An object containing generated color scales and additional properties:

  • accentScale
  • accentScaleWideGamut
  • accentScaleAlpha
  • accentScaleAlphaWideGamut
  • accentContrast
  • accentSurface
  • accentSurfaceWideGamut
  • grayScale
  • grayScaleWideGamut
  • grayScaleAlpha
  • grayScaleAlphaWideGamut
  • graySurface
  • graySurfaceWideGamut
  • background

getColorScaleCss(options)

Generates CSS variables for a given color scale.

Parameters:

  • options.isDarkMode: boolean — Specifies if the theme is dark mode.
  • options.name: string — The name of the color scale (e.g., "blue", "gray").
  • options.contrast: string — The contrast color for text.
  • options.scale: string[] — The color scale array.
  • options.scaleWideGamut: string[] — The wide gamut color scale array.
  • options.scaleAlpha: string[] — The alpha color scale array.
  • options.scaleAlphaWideGamut: string[] — The wide gamut alpha color scale array.
  • options.surface: string — The surface color.
  • options.surfaceWideGamut: string — The wide gamut surface color.

Returns:

A string containing CSS variables for the color scale.

getBackgroundColorCss(options)

Generates CSS variables for the background color.

Parameters:

  • options.isDarkMode: boolean — Specifies if the theme is dark mode.
  • options.background: string — The background color.

Returns:

A string containing the CSS variable for the background color.

Contributing

Contributions are welcome! Please open an issue or submit a pull request on GitHub.