Skip to content

Commit 5616a99

Browse files
committed
Use CommonJS format for default config
...so people can copy and paste it.
1 parent 09a56e7 commit 5616a99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/defaultConfig.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const colors = {
1+
var colors = {
22
'black': '#000000',
33
'grey-900': '#212b35',
44
'grey-800': '#404e5c',
@@ -47,8 +47,8 @@ const colors = {
4747
'pink-lightest': '#fdf2f5',
4848
}
4949

50-
export default {
51-
colors,
50+
module.exports = {
51+
colors: colors,
5252
screens: {
5353
sm: '576px',
5454
md: '768px',

0 commit comments

Comments
 (0)