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

postcss-variable-theming

v0.5.1

Published

PostCSS plugin to provide theming function based on CSS variables using @var rules.

Readme

PostCSS Variable Theming

PostCSS plugin to provide theming function based on CSS variables using @var rules.

Installation

npm install -D postcss-variable-theming

Usage

postcss.confg.js:

import theming from 'postcss-variable-theming';

export default {
  plugins: [theming()],
};
/* Input CSS */

@var foo {
  :root {
    font: 16px / 1.5;
    color: ;
  }
}

@var h1, heading {
  h1 {
    font-size: 2em;
    line-height: 1.5;
  }
}
@var h2, heading {
  h2 {
    font-size: 1.5em;
    line-height: 1.5;
  }
}
@var h3, heading {
  h3 {
    font-size: 1.17em;
    line-height: 1.5;
  }
}
/* Output CSS */

:root {
  font: var(--foo-font, 16px / 1.5);
  color: var(--foo-color);
}
h1 {
  font-size: var(--h1-font-size, var(--heading-font-size, 2em));
  line-height: var(--h1-line-height, var(--heading-line-height, 1.5));
}
h2 {
  font-size: var(--h2-font-size, var(--heading-font-size, 1.5em));
  line-height: var(--h2-line-height, var(--heading-line-height, 1.5));
}
h3 {
  font-size: var(--h3-font-size, var(--heading-font-size, 1.17em));
  line-height: var(--h3-line-height, var(--heading-line-height, 1.5));
}

Or you can use a special * character as follows:

@var *, heading {
  @var h1 {
    h1 { ... }
  }
  @var h2 {
    h2 { ... }
  }
  @var h3 {
    h3 { ... }
  }
}

Theme nesting

/* Input CSS */

@var {
  :root {
    --color-1: orange;
  }
  @var foo.bar {
    :root {
      --color-2: green;
    }
  }
  @var foo {
    @var baz {
      :root {
        --color-3: purple;
      }
    }
  }
}
/* Output CSS */

:root {
  --color-1: var(--color-1, orange);
}
:root {
  --color-2: var(--foo--bar-color-2, green);
}
:root {
  --color-3: var(--foo--baz-color-3, purple);
}

A @var named . nests an anonymous theme. At the top level it adds nothing to the variable name, while inside another theme the nesting delimiter is kept and the property name follows it. Themes nested further inside keep the name they would have had anyway:

/* Input CSS */

@var foo {
  @var . {
    :root {
      color: red;
    }
  }
}
/* Output CSS */

:root {
  color: var(--foo--color, red);
}

Explicit nesting specifier: &

/* Input CSS */

@var acme {
  @var *, fallback.& {
    @media (prefers-color-scheme: light) {
      @var &.light {
        :root {
          color: #111;
          background-color: #fff;
        }
      }
    }
    @media (prefers-color-scheme: dark) {
      @var &.dark {
        :root {
          color: #fff;
          background-color: #333;
        }
      }
    }
  }
}
/* Output CSS */

@media (prefers-color-scheme: light) {
  :root {
    color: var(--acme--light-color, var(--fallback--acme-color, #111));
    background-color: var(--acme--light-background-color,
      var(--fallback--acme-background-color, #fff));
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    color: var(--acme--dark-color, var(--fallback--acme-color, #fff));
    background-color: var(--acme--dark-background-color,
      var(--fallback--acme-background-color, #333));
  }
}

Property aliases

Variable names are derived from the property name itself, but propAlias lets you name them freely:

import theming from 'postcss-variable-theming';

export default {
  plugins: [
    theming({
      propAlias: {
        'background-color': 'bg',
        color: 'text',
        '--brand': 'primary',
      },
    }),
  ],
};
/* Input CSS */

@var acme {
  .card {
    background-color: #fff;
    color: #111;
    --brand: #09f;
    padding: 1rem;
  }
}
/* Output CSS */

.card {
  background-color: var(--acme-bg, #fff);
  color: var(--acme-text, #111);
  --brand: var(--acme-primary, #09f);
  padding: var(--acme-padding, 1rem);
}

Properties left out of the table keep their own name, so only the ones worth shortening need an entry.

Tailwind preset

postcss-variable-theming/preset ships ready-made tables. tailwindPropAlias holds 83 entries named after Tailwind CSS utility class prefixes:

import theming from 'postcss-variable-theming';
import { tailwindPropAlias } from 'postcss-variable-theming/preset';

export default {
  plugins: [theming({ propAlias: tailwindPropAlias })],
};

| Property | Variable name | | --- | --- | | color | text | | background-color | bg | | border-color | border | | padding-inline | px | | margin-top | mt | | width | w | | border-radius | rounded | | letter-spacing | tracking | | line-height | leading | | transition-duration | duration |

Tailwind reuses a single prefix for several properties — text-lg sets font-size while text-red-500 sets color, and border-2 sets border-width while border-red-500 sets border-color. A name can only belong to one property here, so the preset hands it to the color property and leaves font-size, border-width, outline-width and text-decoration-thickness under their own names.

Grouped preset

groupedPropAlias moves the side, corner or axis segment of a longhand name to the end, so every variant of one feature shares a prefix:

| Property | Variable name | | --- | --- | | border-top-width | border-width-top | | border-block-end-width | border-width-block-end | | border-inline-start-color | border-color-inline-start | | border-start-start-radius | border-radius-start-start | | corner-top-left-shape | corner-shape-top-left | | inline-size | size-inline | | min-block-size | min-size-block |

All 62 standard properties whose segments run the other way around are covered, which keeps --border-width-* together instead of scattering it over --border-top-width, --border-block-end-width and the rest.

The two presets can be merged, the later one winning:

theming({ propAlias: { ...groupedPropAlias, ...tailwindPropAlias } })

Name collisions

Two properties sharing one variable name would silently overwrite each other, so they are reported as a PostCSS warning:

@var acme {
  :root {
    background-color: red;
    --bg: blue;
  }
}
Variable --acme-bg is generated from both "background-color" and "--bg"

Options

import theming from 'postcss-variable-theming';

export default {
  plugins: [
    theming({
      prefix: '',
      propDelimiter: '-',
      nestedThemeDelimiter: '--',
      atRuleName: 'var',
      propAlias: {},
    }),
  ],
};

prefix

  • Type: string
  • Default: ''

propDelimiter

  • Type: string
  • Default: '-'

nestedThemeDelimiter

  • Type: string
  • Default: '--'

atRuleName

  • Type: string
  • Default: var

propAlias

  • Type: Record<string, string>
  • Default: {}

Maps a property name to the name used in the generated variable. Custom properties are keyed with their leading -- (e.g. '--brand': 'primary').