Pricing
Type-safe Composable CSS
Write type-safe, composable, future-proof Design Systems code using styleframe's powerful TypeScript CSS API.
styleframe.config.ts
import { stylefame } from 'stylefame';
const s = stylefame();
const { variable, ref, selector } = s;
const { colorBlue } = useColors(s);
const colorPrimary = variable('color-primary', ref(colorBlue));
selector('.button', {
backgroundColor: ref(colorPrimary),
});
export default s;