tonami
v0.4.4
Published
Minimal CSS-in-JS library that promotes CSS best-practices and strongly-typed design systems.
Downloads
28
Maintainers
Readme
Tonami
CSS-in-JS library with a familiar API that uses CSS custom properties under the hood
🚨 Warning
Until we reach v1.0.0 the API still may change.
Get Started
yarn add tonami
Documentation
https://tonami.dev
Example
import { createTokens, styled, createGlobalStyle } from "tonami";
const theme = createTokens({
fontFamily: "Helvetica",
borderRadius: "3px",
});
const Global = createGlobalStyle({
html: {
fontFamily: theme.fontFamily,
},
});
const Banner = styled.div({
borderRadius: theme.borderRadius,
backgroundColor: ({ $color }) => $color,
});
const { Tokens } = theme;
function App() {
return (
<>
<Tokens />
<Global />
<Banner $color="lightgreen">Welcome!</Banner>
</>
);
}
Issues
Please file an issue for bugs or unexpected behavior.
Feature Requests
Please file an issue to suggest new features. Vote on feature requests by adding a 👍.
License
MIT