diff --git a/src/components/layout/MainLayout.tsx b/src/components/layout/MainLayout.tsx index 982e78b..be9ce9f 100644 --- a/src/components/layout/MainLayout.tsx +++ b/src/components/layout/MainLayout.tsx @@ -117,6 +117,12 @@ const headerIcons = { ), + whiteTheme: ( + + + + + ), autoTheme: ( @@ -571,7 +577,9 @@ export function MainLayout() { ? headerIcons.autoTheme : theme === 'dark' ? headerIcons.moon - : headerIcons.sun} + : theme === 'white' + ? headerIcons.whiteTheme + : headerIcons.sun}