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

@bitcurve/reactor-tw-palette

v0.0.1

Published

A [tailwindcss](https://tailwindcss.com/docs/installation) plugin that helps define the palette of a tailwind preset or theme with light/dark mode support and coordination with the `@tailwindcss/typography` (`prose`) plugin.

Downloads

1

Readme

@bitcurve/reactor-tw-palette

A tailwindcss plugin that helps define the palette of a tailwind preset or theme with light/dark mode support and coordination with the @tailwindcss/typography (prose) plugin.

The plugin accepts a PluginThemePaletteDefinition object and uses it to:

  • create CSS custom properties (CSS variables) for each color
  • create color utility classes under tailwind preset/config theme.extend.colors
  • automatically map colors that follow a naming convention to apply the @tailwindcss/typography (prose) plugin

This package includes a helper to extend tailwind-merge to recognize custom color utility classes added via this plugin so they can be intelligently merged with other color utilities.

This package is published as both ESM + CJS with types and source maps targeting ES2022.

Features

CSS custom properies and color utility classes generated by this plugin are prefixed with a capital P (for palette) so they are easily distinguished from other color utilities and easily searchable in code: e.g. --P-primary -> text-P-primary.

The theme palette definition supports nesting with a tailwind-config-like convention for DEFAULT keys. Nested keys are flattened for easy reference e.g. --P-primary-hover -> text-P-primary-hover.

The value of CSS custom properties set by this plugin are color channel values as required to support tailwind's opacity modifier syntax e.g. bg-P-primary/50.

Color values in a palette definition object can be RGB (#000, #fffff), HSL (hsl(...), hsla(...)), or OKLCH (oklch(...)).

This makes it is easy to paste colors from design tools and to reference colors from tailwind's default palette or any tailwind-compatible palette such as the @evilmartians/harmony OKLCH palette.

The entries in a palette definition object are entirely free-form and the only convention is for automatic mapping to the @tailwindcss/typography (prose) plugin.

Installation

All documentation and examples assume ESM; revise the syntax accordingly if you are using CommonJS.

Install this Package

Install this package as a dev dependency:

pnpm add -D @bitcurve/reactor-tw-palette

Import into your tailwind preset or theme and provide your color definition in the plugin configuration.

The theme palette definition should satisfy the type PluginThemePaletteDefinition.

const tailwindConfig = {
  // ...
  plugins: [
    palettePlugin({
      palette: themePaletteDefinition,
      typography: {
        applyAlpha: true,
        colorSpaceFn: 'oklch', // 'rgb', 'hsl', 'oklch' supported
      }
    }),
  ]
  // ...
}

Specifying typography config is optional: the defaults are applyAlpha: true and colorSpaceFn: 'rgb'.

Theme Palette Definition

import { neutral, slate, cyan } from 'tailwindcss/colors'

const neutral = {
  ...colors.neutral,
} satisfies PaletteDictionary

const palette = {
  // tuple values define respective light and dark colors in one line
  border: ['hsl(31 120 50)', 'hsl(31 120 10)'],

  // single values as strings or 1-item arrays apply the same color to both light and dark
  box: 'hsl(31 120 50)',

  // arbitrary levels of nesting are supported with `DEFAULT` special case (this produces `--P-link` and `--P-link-hover`)
  link: {
    DEFAULT: '#0000ff',
    hover: '#0000fa',
  },

  // refer to type PaletteTypographyDictionary for enforced types that map to typography plugin
  // a current limitation (pending TODO) is all values must use the same color space (rgb/hsl/oklch) and it must be set in config
  content: {
    // ...
  }
}

Merge css class names with cn()

import { cn } from '@bitcurve/reactor-style'