diff options
-rw-r--r-- | packages/website/ts/@next/components/siteWrap.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/website/ts/@next/components/siteWrap.tsx b/packages/website/ts/@next/components/siteWrap.tsx index 8588e4531..686ad8f2c 100644 --- a/packages/website/ts/@next/components/siteWrap.tsx +++ b/packages/website/ts/@next/components/siteWrap.tsx @@ -23,7 +23,7 @@ interface MainProps { export interface ThemeInterface { [key: string]: { bgColor: string; - darkBgColor: string; + darkBgColor?: string; lightBgColor: string; textColor: string; paragraphColor: string; @@ -61,6 +61,7 @@ const GLOBAL_THEMES: ThemeInterface = { }, light: { bgColor: '#FFFFFF', + lightBgColor: '#003831', textColor: '#000000', paragraphColor: '#474747', linkColor: colors.brandDark, @@ -77,6 +78,7 @@ const GLOBAL_THEMES: ThemeInterface = { }, gray: { bgColor: '#e0e0e0', + lightBgColor: '#003831', textColor: '#000000', paragraphColor: '#777777', linkColor: colors.brandDark, |