Skip to content

bill-kerr/tailwindcss-plugin-defaults

Repository files navigation

tailwindcss-plugin-defaults

A Tailwind CSS plugin that gives component authors default, override-able classes.

Quick Start

npm i tailwindcss-plugin-defaults

Add the plugin to your tailwind.config.js file.

// tailwind.config.js

const defaults = require("tailwindcss-plugin-defaults");

module.exports = {
  content: [""],
  theme: {
    extend: {},
  },
  plugins: [defaults],
};
// Set component defaults
function Card({ className }) {
  return <span className={`d:bg-gray-100 d:rounded d:p-4 d:shadow ${className}`}>;
}

// Easily override them without worrying about CSS ordering
function CardList() {
  return (
    <div className="flex space-x-6">
      {/* This card will have a bg-gray-50 background color */}
      <Card className="bg-gray-50" />

      {/* This card will have a bg-gray-100 background color */}
      <Card />
    </div>
  );
}

Stacked Modifier Ordering

The official TailwindCSS documentation on stacked modifier ordering states that modifiers are applied from the inside out. This means that ordering modifiers like this:

<!-- INCORRECT -->
<div class="d:hover:bg-red-100" />

Will result in CSS that looks like this:

html :where(.d\:hover\:bg-red-100:hover) {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity));
}

This is probably not what you want, because the :hover pseudo class does not increase the specificity of this CSS statement and will collide with all other background color utilities.

Therefore, when writing default classes, it is of utmost importance to keep the d: modifier in the innermost position:

<!-- CORRECT -->
<div class="hover:d:bg-red-100" />

Now, the correct CSS is generated:

html :where(.hover\:d\:bg-red-100):hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity));
}

Configuration

To use a modifier other than the default d:, pass in a modifier configuration property to the plugin.

// tailwind.config.js

const defaults = require("tailwindcss-plugin-defaults");

module.exports = {
  content: [""],
  theme: {
    extend: {},
  },
  plugins: [defaults({ modifier: "default" })],
};

Now your modifier for default classes can be used as follows.

<div class="default:bg-gray-100">You can change the modifier!</div>

Why

Providing override-able, default styles is a well-known issue for users of Tailwind CSS who wish to build reusable components. Without tailwindcss-plugin-defaults, the following element will have a background color of bg-green-900 despite it being defined earlier in the class list. This is because bg-green-900 is defined later in the CSS file.

<div class="bg-green-900 bg-green-50">
  My background color is bg-green-900 😢
</div>

With tailwindcss-plugin-defaults, we can change that behavior.

<div class="d:bg-green-900 bg-green-50">
  My background color is bg-green-50! 😄
</div>

How

Default classes make use of the :where() pseudo-class. The :where() pseudo-class drops specificity to 0, allowing classes to be overridden by any CSS declaration. The default class for mt-4 would look like:

html :where(.d\:mt-4) {
  margin-top: 1rem;
}

This now allows base components to implement d:mt-4 and colliding margin utilities such as mt-1 will now supersede the default utility.

About

Default, override-able classes for Tailwind CSS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published