Skip to content

Commit e8b2d76

Browse files
committed
fix: 🐛 added --background-color variable in light mode
1 parent 0fefcad commit e8b2d76

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/components/Theme/Theme.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,20 +69,26 @@ export default function ThemeProvider({ children }) {
6969
// styles
7070
const lightTheme = [
7171
'--text-color: #000000',
72+
'--background-color: #ffffff',
73+
7274
'--gray-dark: #3c3c3c',
7375
'--gray-mid: #666666',
7476
'--gray-light: #ededed',
7577
'--gray-light-hover: #cfcfcf',
7678

7779
'--cyan: #2dc5f4',
7880
'--cyan-light: #eefbff',
81+
7982
'--pink: #f063a4',
8083
'--pink-light: #ffebf4',
8184
'--pink-tint: #fff7fa',
85+
8286
'--orange: #f89e4f',
8387
'--orange-light: #fff1e5',
88+
8489
'--purple: #9253a1',
8590
'--purple-light: #f0e1f3',
91+
8692
'--red: #f16164',
8793
'--red-light: #fff3f3',
8894
'--red-lightest: #fffcfc',
@@ -93,6 +99,7 @@ const lightTheme = [
9399
const darkTheme = [
94100
'--text-color: #f0f0f0',
95101
'--background-color: #1e1d20',
102+
96103
'--gray-dark: #1f1f1f',
97104
'--gray-mid: #b3b3b3',
98105
'--gray-light: #2d2d2d',

0 commit comments

Comments
 (0)