Gathering detailed insights and metrics for @bigcommerce/big-design-theme
Gathering detailed insights and metrics for @bigcommerce/big-design-theme
Gathering detailed insights and metrics for @bigcommerce/big-design-theme
Gathering detailed insights and metrics for @bigcommerce/big-design-theme
Design system that powers the BigCommerce ecosystem.
npm install @bigcommerce/big-design-theme
Typescript
Module System
Node Version
NPM Version
@bigcommerce/docs@1.6.1
Updated on Apr 30, 2025
@bigcommerce/big-design-patterns@3.0.1
Updated on Apr 30, 2025
@bigcommerce/big-design-icons@1.4.0
Updated on Apr 30, 2025
@bigcommerce/big-design@2.0.1
Updated on Apr 30, 2025
@bigcommerce/big-design-patterns@3.0.0
Updated on Apr 25, 2025
@bigcommerce/docs@1.6.0
Updated on Apr 25, 2025
TypeScript (98.27%)
MDX (1.28%)
JavaScript (0.43%)
HTML (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
54 Stars
1,591 Commits
66 Forks
39 Watchers
22 Branches
411 Contributors
Updated on Jul 08, 2025
Latest Version
1.1.0
Package Id
@bigcommerce/big-design-theme@1.1.0
Unpacked Size
60.18 kB
Size
16.63 kB
File Count
65
NPM Version
10.8.1
Node Version
20.16.0
Published on
Aug 21, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
3
24
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:
16px
.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
1// index.tsx 2 3import { theme } from '@bigcommerce/big-design-theme'; 4import { ThemeProvider } from 'styled-components'; 5 6// ... 7 8ReactDOM.render( 9 <ThemeProvider theme={theme}> 10 <App /> 11 </ThemeProvider>, 12 document.getElementById('root'), 13);
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.
1import { createTheme } from '@bigcommerce/big-design-theme'; 2import { ThemeProvider } from 'styled-components'; 3 4const theme = createTheme({ htmlFontSize: 14 }); 5 6// ... 7 8<ThemeProvider theme={theme}> 9 <App /> 10</ThemeProvider>;
No vulnerabilities found.
Reason
all changesets reviewed
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
security policy file detected
Details
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
5 existing vulnerabilities detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More