Kaze [風] zero-runtime CSS in JS
🚧 under development 🚧
Features
- Extract - Can choose when to extract css is buildtime or runtime(RSC is buildtime only)
- Atomic - Select atomic css with $
- Merge - Style merging ignoring css specificity (atomic css only)
- Minimal - 0.3kb runtime by buildtime extract
- TypeScript - Type-safe styles via csstype
- Theme - Consistent styling using "@kaze-style/themes"
Example
import { style, globalStyle } from '@kaze-style/core';
globalStyle({
html: {
lineHeight: '1.5',
},
});
export const classes = style({
container: {
margin: '20px',
padding: '20px',
},
$base: {
color: 'red',
background: 'black',
},
$action: {
color: 'blue',
},
});
import { mergeStyle } from '@kaze-style/core';
import { classes } from './App.style';
export const App = ({ action }) => {
return (
<div className={style.container}>
<p className={mergeStyle(classes.$base, action && classes.$action)}></p>
</div>
);
};
import { withKazeStyle } from '@kaze-style/next-plugin';
const nextConfig = {};
export default withKazeStyle(nextConfig);
Inspiration
KazeStyle was designed with reference to several CSS in JS libraries.
microsoft/griffel
seek-oss/vanilla-extract
argyleink/open-props
callstack/linaria
Author
Taishi Naritomi
License
MIT