import React from "react"; import { Sun as SunIcon, Moon as MoonIcon, Droplet as BlueIcon, Leaf as GreenIcon, Flame as OrangeIcon } from "lucide-react"; import { useTheme } from "../../context/ThemeContext"; const themeIcons = { light: , dark: , blue: , green: , orange: , }; const themes = ["light", "dark", "blue", "green", "orange"]; const Theme: React.FC = () => { const { theme, setTheme } = useTheme(); const handleNextTheme = () => { const currentIndex = themes.indexOf(theme); const nextIndex = (currentIndex + 1) % themes.length; const nextTheme = themes[nextIndex]; setTheme(nextTheme); document.body.setAttribute("data-theme", nextTheme); }; return ( ); }; export default Theme; {/* ${isMode ? `text-white bg-[#3478ef] hover:text-[#3478ef] hover:bg-[#000000] border-[#3478ef] hover:border-[##3478ef]` : `text-yellow-400 bg-white hover:text-yellow-400 hover:bg-white border-yellow-400 hover:border-yellow-400`} hover:border-b-4 hover:border-l-4 active:border-b-2 active:border-l-2 transition-all `} */}