tw-variants v0.1.1
Introduction
Tailwind doesn't support variant-grouping out of the box because it leads to tons of duplicate CSS being generated as compared to using individual classes (as we can see in this tweet)
This is because with the grouped syntax like focus:(font-bold underline) each group leads to a new CSS selector being generated, and the CSS generated for focus:font-bold and focus:underline can't be reused.
tw-variants overcomes this by expanding this grouped syntax at build time into individual classes. So now when tailwind scans the files, it sees focus:(font-bold underline) as focus:font-bold focus:underline since it has been expanded before tailwind sees it.
This way you can use grouped-syntax while not having to worry about the css size.
Installation
npm install tw-variantsAdd the babel plugin to your babel config (.babelrc) :-
{
"plugins": ["tw-variants/babel"]
}Add .tw-variants to your .gitignore. This is where tw-variants stores the expanded CSS for tailwind to scan
.tw-variantsAnd add the same to the content section of your tailwind.config.js:-
module.exports = {
content: [
// ...
'./.tw-variants',
],
// ...
};Usage
Just import tw from tw-variants and use it like a tagged template literal :-
import { tw } from 'tw-variants';
const button = tw`font-semibold border rounded focus:(font-bold underline)`;You can't use ${variable} inside tw, so instead of doing:-
import { tw } from 'tw-variants';
const button = tw`font-semibold border rounded focus:(font-bold underline)`;
const redButton = tw`${button} bg-red-500`;Instead do:-
import { tw } from 'tw-variants';
const button = tw`font-semibold border rounded focus:(font-bold underline)`;
const redButton = `${button} ${tw`bg-red-500`}`;Tailwind CSS IntelliSense
If you're using the "Tailwind CSS IntelliSense" Visual Studio Code extension, you can enable autocompletion inside tw by adding the following to your settings.json:
{
"tailwindCSS.experimental.classRegex": ["tw`([^`]*)"]
}