@indivorg/kit

```sh yarn add @indivorg/kit ```

Usage no npm install needed!

<script type="module">
  import indivorgKit from 'https://cdn.skypack.dev/@indivorg/kit';
</script>

README

Indiv Component Kit

Themeable components based on Theme UI


Indiv Kit is a collection of React components built using Theme UI and based on a standard Theme Specification.

documentation: https://indivorg.github.io/kit


Built for designs systems, white-labels, themes and other applications where colors, typography, and layout are treated as first-class citizens and based on a standard Theme Specification.

  • Uses Theme UI
  • No hard-coded colours / branding – not too opinionated.
  • Used by Indiv in production.

Getting Started

yarn add @indivorg/kit

Any styles in your app can reference values from the global theme object. To provide the theme in context, wrap your application with the ThemeProvider component and pass in a custom theme object.

// basic usage
import { ThemeProvider } from 'theme-ui';
import theme from './theme';

export default (props) => (
  <ThemeProvider theme={theme}>{props.children}</ThemeProvider>
);