@bigcommerce/big-design-theme

1.0.0 • Public • Published

BigDesign Theme npm version CircleCI

BigDesign design system.

Documentation

You can find documentation and examples on our docs page.

Note

BigDesign components use this theme by default. This package is only meant to be used directly when more advanced features are needed such as:

  • When you app uses an html font size different than 16px.
  • Creating a brand new theme.
  • Typescript typings.

Quick start guide

Add the BigDesign theme and styled-components@5 to your project using npm:

npm install @bigcommerce/big-design-theme styled-components@5

or with pnpm:

pnpm add @bigcommerce/big-design-theme styled-components@5
// index.tsx

import { theme } from '@bigcommerce/big-design-theme';
import { ThemeProvider } from 'styled-components';

// ...

ReactDOM.render(
  <ThemeProvider theme={theme}>
      <App />
  </ThemeProvider>,
  document.getElementById('root'),
);

Using a different html font size

When your app uses an html font size different than 16px you will need to create a new theme that uses your app's html font size internally to calculate spacings and sizes.

The following example show how to create a theme using a 14px html font size and provide the theme to your app.

import { createTheme } from '@bigcommerce/big-design-theme';
import { ThemeProvider } from 'styled-components';

const theme = createTheme({ htmlFontSize: 14 });

// ...

<ThemeProvider theme={theme}>
  <App />
</ThemeProvider>;

/@bigcommerce/big-design-theme/

    Package Sidebar

    Install

    npm i @bigcommerce/big-design-theme

    Weekly Downloads

    1,130

    Version

    1.0.0

    License

    (MIT AND CC-BY-3.0)

    Unpacked Size

    61.6 kB

    Total Files

    65

    Last publish

    Collaborators

    • erik.christensen
    • leebigcommerce
    • toma-r
    • cilo
    • jorgemoya
    • bcnpmuser
    • icatalina
    • chris.boulton
    • bcandreik
    • davidchin
    • pascal.zajac
    • deini
    • chanceaclark
    • jairobc
    • jmwiese