Plumeria 0.27.0
2025/11/28
Features
New Variant syntax added.
const Button = ({ color }: { color: keyof typeof styles }) => {
return <button className={css.props(styles[color])}>Button</button>;
};<Button color="key">Improvement
zss-engine improvement:
color: white and color: #fff were generating separate atoms, but now they are just one color name.
Others
- Added Variant to the documentation.
- Snippets macro updated.