martinpl/tailwind-merge

PHP port of tailwind-merge: merge Tailwind CSS class strings by removing style conflicts

Maintainers

Package info

github.com/martinpl/tailwind-merge

Language:TypeScript

pkg:composer/martinpl/tailwind-merge

Statistics

Installs: 7

Dependents: 0

Suggesters: 0

Stars: 0

dev-main 2026-04-04 15:48 UTC

This package is auto-updated.

Last update: 2026-04-04 15:48:54 UTC


README


tailwind-merge

tailwind-merge

Utility function to efficiently merge Tailwind CSS classes in JS without style conflicts.

import { twMerge } from 'tailwind-merge'

twMerge('px-2 py-1 bg-red hover:bg-dark-red', 'p-3 bg-[#B91C1C]')
// → 'hover:bg-dark-red p-3 bg-[#B91C1C]'

Get started