Skip to content

Commit bcf6339

Browse files
committed
fix: wrong light theme colors
1 parent f9cdc28 commit bcf6339

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

theme.config.cjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ const themeColors = {
77
hard: '#ff2d55',
88
},
99
light: {
10-
secondary: colors.zinc['900'],
11-
tertiary: colors.zinc['50'],
10+
secondary: colors.gray['900'],
11+
tertiary: colors.gray['50'],
1212
},
1313
dark: {
1414
secondary: colors.zinc['100'],
@@ -111,7 +111,7 @@ const lightTheme = ({ primary, secondary, tertiary }) => {
111111
const siteTheme = ({ primary, secondary, tertiary }, isDark = true) =>
112112
isDark
113113
? darkTheme({ primary, secondary, tertiary })
114-
: lightTheme(darkTheme({ primary, secondary, tertiary }))
114+
: lightTheme({ primary, secondary, tertiary })
115115

116116
module.exports = {
117117
defaultTheme: {

0 commit comments

Comments
 (0)