Zero-Runtime CSS in JS
Generate CSS at build time from JavaScript object maps. Build screens with highly productive syntax and increase efficiency with linting.
GET STARTEDimport { css } from '@plumeria/core';
const styles = css.create({
button: {
padding: '16px 32px',
transition: '200ms',
[css.pseudo.hover]: {
color: '#ef2a86',
},
},
});