0.0.7 • Published 3 years ago

@filbert-js/theming v0.0.7

Weekly downloads
982
License
MIT
Repository
github
Last release
3 years ago

@filbert-js/theming

theming for filbert-js

Install

yarn add @filbert-js/theming

Usage

import React from 'react';
import { styled } from '@filbert-js/core';
import { ThemeProvider } from '@filbert-js/theming';
const Button = styled('button')`
  background: ${({ theme }) => theme.colors.brand};
  border: solid 1px gray;
`;
const theme = {
  colors: {
    brand: 'hotpink',
  },
};
render(
  <ThemeProvider theme={theme}>
    <Button>This is a Button component.</Button>
  </ThemeProvider>,
);

More documentation is available at https://filbert-js.vercel.app.