-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Description
What version of Tailwind CSS are you using?
v4.1.14
What build tool (or framework if it abstracts the build tool) are you using?
@sveltejs/package 2.5.4, Vite 7.1.9, PostCSS 8.5.6
What version of Node.js are you using?
v20.x+ (Node.js runtime)
What browser are you using?
N/A (build-time issue)
What operating system are you using?
Windows (also affects other platforms)
Reproduction URL
A minimal reproduction would need to be created - this is a complex monorepo setup with svelte-package + @reference directive + custom theme utilities
Describe your issue
The @reference
directive fails to properly resolve custom theme utilities when building Svelte component libraries with svelte-package
since Tailwind CSS v4.1.14. This was working correctly in v4.1.13 and earlier versions.
Steps to reproduce:
- Create a Svelte component library using
svelte-package
- Define custom theme utilities in a main CSS file using
@theme
:@theme { --radius-button: var(--theme-radius-button, var(--theme-radius, var(--radius-md, 0))); }
- Use
@reference
directive in component styles to import the theme:<style lang="postcss"> @reference "@layerd/ui/ui.css"; .btn { @apply rounded-button; /* Custom utility from theme */ } </style>
- Run
svelte-package
build
Expected behavior:
The build should complete successfully with custom theme utilities being resolved through the @reference
directive.
Actual behavior:
Since v4.1.14, the build fails with errors like:
Cannot apply unknown utility class `rounded-button`. Are you using CSS modules or similar and missing `@reference`?
Additional context:
- This appears to be a regression introduced in v4.1.14
- Downgrading to v4.1.13 resolves the issue
- The problem specifically affects complex monorepo setups where components reference a main CSS file with custom theme utilities
- The
@reference
directive seems to not properly resolve theme variables during thesvelte-package
build process in v4.1.14
Workaround:
Downgrade to Tailwind CSS v4.1.13:
{
"@tailwindcss/cli": "4.1.13",
"@tailwindcss/postcss": "4.1.13",
"@tailwindcss/vite": "4.1.13",
"tailwindcss": "4.1.13"
}