diff --git a/frontend/components/layout/layout.tsx b/frontend/components/layout/layout.tsx index 442cf2f817..04706ed226 100644 --- a/frontend/components/layout/layout.tsx +++ b/frontend/components/layout/layout.tsx @@ -10,7 +10,6 @@ export default function RootLayout({ }>) { const [isAuth, setIsAuth] = useState(false) const pathname = usePathname() - console.log(pathname) useEffect(() => { if (pathname == '/auth') { setIsAuth(true) diff --git a/frontend/styles/globals.css b/frontend/styles/globals.css index 9c1018ef85..45e8ae7a83 100644 --- a/frontend/styles/globals.css +++ b/frontend/styles/globals.css @@ -3,9 +3,6 @@ @tailwind utilities; :root { - --background: #f5f5f5; - --foreground: #171717; - --theme-900: #3b0764; --theme-600: #7f57c2; --theme-400: #c084fc; @@ -26,6 +23,9 @@ --orange-pri: #fb923c; --orange-sec: #ffedd5; + + --background: #fff; + --foreground: var(--slate-700); } pre,