You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f879aff Thanks @vnphanquang! - [BREAKING] drop :global variant to avoid ambiguity. User may use :global manually. In Svelte 5, for example, you can now declare a :global style block, e.g. :global { .class { @color-scheme dark { /* ... */ } } };
f879aff Thanks @vnphanquang! - [BREAKING] drop @light and @dark at-rules in favor for a single coherent @color-scheme at-rule, i.e @color-scheme dark { /* ... */ } or @color-scheme light { /* ... */ }
f879aff Thanks @vnphanquang! - [BREAKING] drop tailwind plugin. In Tailwind V4, simply add @import 'postcss-color-scheme/tailwind.css' to tailwind-aware context to make light: and dark: variants available for use in markup. See README.md for more information
f879aff Thanks @vnphanquang! - [BREAKING] no longer handle nesting now that the standardized CSS Nesting has landed (leave up to other transformer to support older browser or not)