ttizze / eveeve

https://eveeve.org/
MIT License
12 stars 2 forks source link

テーマ管理を適切に #187

Closed ttizze closed 2 months ago

ttizze commented 3 months ago

タイトルロゴをちゃんとする

ttizze commented 3 months ago

const { resolvedTheme } = useTheme(); src={/title-logo-${resolvedTheme || "light"}.png}

これだとenterで遷移するとならない 以下みたいなの使うとなるけどテーマに応じて画像変えるためだけにこれするの複雑すぎる気がする

    const [mounted, setMounted] = useState(false);

    useEffect(() => {
        setMounted(true);
    }, []);

そもそもどのテーマでも見える色にすればいいのでは