diff --git a/frontend/components/Navbar/index.tsx b/frontend/components/Navbar/index.tsx index 6f567b2..8b7b072 100644 --- a/frontend/components/Navbar/index.tsx +++ b/frontend/components/Navbar/index.tsx @@ -7,6 +7,7 @@ import { Spacer, useColorMode, useColorModeValue, + LightMode, } from "@chakra-ui/react"; import React from "react"; import { FaMoon, FaSun } from "react-icons/fa"; @@ -16,17 +17,22 @@ export const Navbar = (): JSX.Element => { const SwitchIcon = useColorModeValue(FaMoon, FaSun); const nextMode = useColorModeValue("dark", "light"); + const textColor = useColorModeValue("white", "white"); + const boxBg = useColorModeValue("#343A40", "#343A40"); + const buttonBg = useColorModeValue("#2D9CDB", "#2D9CDB"); + const iconColor = useColorModeValue("#ECC94B", "light"); + return ( - - + + Dialog - - - { color="current" margin="1" onClick={toggleColorMode} - icon={} + icon={} />