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

classname-theme

v1.1.0

Published

`classname-theme` is a lightweight library that allows you to configure and generate themes for components using Tailwind classes quickly. It’s designed to provide flexibility in managing variants, sizes, states, and more for component customization.

Downloads

184

Readme

Classname Theme

classname-theme is a lightweight library that allows you to configure and generate themes for components using Tailwind classes quickly. It’s designed to provide flexibility in managing variants, sizes, states, and more for component customization.

Installation To install the library, use npm:

npm install classname-theme

Basic Usage

The main function of the library is defineTheme, which lets you define a theme and then generate classes easily for your components.

Example

  1. Define a theme using defineTheme:
import { defineTheme } from 'classname-theme';

const simpleTheme = {
  initial: { variant: 'primary' },
  variants: {
    primary: 'bg-blue-500 text-white',
    secondary: 'bg-gray-500 text-white',
  },
  sizes: {
    small: 'text-sm',
    large: 'text-lg',
  },
};

const cnt = defineTheme(simpleTheme);
  1. Generate dynamic classes for your components:
// Using the default 'primary' variant
cnt(); // 'bg-blue-500 text-white'

// Specifying a variant
cnt({ variant: 'secondary' }); // 'bg-gray-500 text-white'

Theme definition

Themes are objects that allow you to define variants, sizes, states, flags, and options in a flexible way. Here are the main keys you can use:

  • variants: Define component variants, such as primary or secondary.
  • sizes: Specify different sizes, like small or large.
  • states: Optionally define states like hover or focus.
  • flags: Add additional flags or modifiers that can be combined.
  • options: Define custom options for specific elements within the theme.

Parameters of the cnt Function

You can customize the generated classes using several parameters:

  • variant: Defines the component’s variant (e.g., primary, secondary).
  • size: Specifies the component’s size (e.g., small, large).
  • flags: Sets one or more flags (e.g., rounded, shadow).
  • state: Defines the current state (e.g., hover, focus).
  • options: Pass additional options specific to the component.

Full Example

// Defining a more complex theme
const myTheme = defineTheme({
  variants: {
    primary: 'bg-green-500 text-white',
    secondary: 'bg-yellow-500 text-black',
  },
  sizes: {
    medium: 'text-md',
    large: 'text-xl',
  },
  states: {
    loading: 'animate-pulse',
    ok: '',
  },
  flags: {
    rounded: 'rounded-full',
  },
});

// Uso
cnt({
  variant: 'secondary',
  size: 'large',
  flags: ['rounded'],
  state: 'loading',
});
// Generates: 'bg-yellow-500 text-black text-xl rounded-full animate-pulse'

Theme Extensions

You can extend your theme to add more customization for specific parts of a component using the extensions key:

const complexTheme = defineTheme({
  variants: {
    primary: 'bg-blue-600',
  },
  extensions: {
    button: {
      sizes: {
        small: 'py-2 px-4',
        large: 'py-4 px-8',
      },
    },
  },
});

// Generate classes for a specific button
cnt({ size: 'large', ext: 'button' }); // 'py-4 px-8'

License

This project is licensed under the MIT License.