@olivine/theme

Example theme component

Usage no npm install needed!

<script type="module">
  import olivineTheme from 'https://cdn.skypack.dev/@olivine/theme';
</script>

README

Example App Theme

Usage

import React from 'react';
import { ThemeProvider } from "emotion-theming";

import { GlobalStyles, theme } from '@olivine/theme'

import { theme } from './theme'

export const App = () => {
  return (
    <ThemeProvider theme={theme}>
      <GlobalStyles>
      <div>Hello World</div>
    </ThemeProvider>
  );
};