BigDesign design system.
You can find documentation and examples on our docs page.
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.
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'),
);
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>;