npm i @nekobird/styled-chemistry
import { createTheme } from '@nekobird/styled-chemistry';
const elements = Object.freeze({
});
const compounds = Object.freeze({
});
const mixtures = Object.freeze({
});
export const theme = createTheme(elements)(compounds)(mixtures);
import { StyledChemistryProvider } from '@nekobird/styled-chemistry';
import { theme } from './theme';
const App = () => (
<StyledChemistryProvider theme={theme}>
{
// Your other components.
}
</StyledChemistryProvider>
);