mirror of https://github.com/gabehf/Koito.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
643 B
27 lines
643 B
// ThemeSwitcher.tsx
|
|
import { useEffect } from 'react';
|
|
import { useTheme } from '../../hooks/useTheme';
|
|
import themes from '~/styles/themes.css';
|
|
import ThemeOption from './ThemeOption';
|
|
|
|
export function ThemeSwitcher() {
|
|
const { theme, setTheme } = useTheme();
|
|
|
|
useEffect(() => {
|
|
if (theme) {
|
|
setTheme(theme)
|
|
}
|
|
}, [theme]);
|
|
|
|
return (
|
|
<>
|
|
<h2>Select Theme</h2>
|
|
<div className="grid grid-cols-2 items-center gap-2">
|
|
{themes.map((t) => (
|
|
<ThemeOption setTheme={setTheme} key={t.name} theme={t} />
|
|
))}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|