Skip to content

tone-row/tonami

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tonami

CSS-in-JS library with a familiar API that uses CSS custom properties under the hood

version downloads per month gzipped size test coverage

🚨 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 👍.

Publishing while < 1.0.0

  • If on main, run npm version 0.5.5, otherwise run npm version 0.5.5-beta.1
  • Don't forget to run yarn build
  • If on main, run git push && git push origin v0.5.5, otherwise just push to your branch
  • If on main, run npm publish, otherwise run npm publish --tag beta

License

MIT