mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-26 05:16:41 +07:00
Добавил тему "Веспера"
This commit is contained in:
parent
5d34090238
commit
aee4b662d5
148 changed files with 1331 additions and 1338 deletions
47
src/containers/settings/ThemeSwitcher/index.tsx
Normal file
47
src/containers/settings/ThemeSwitcher/index.tsx
Normal file
|
@ -0,0 +1,47 @@
|
|||
import React, { FC } from 'react';
|
||||
|
||||
import classNames from 'classnames';
|
||||
|
||||
import { Card } from '~/components/containers/Card';
|
||||
import { Group } from '~/components/containers/Group';
|
||||
import { Theme, themeColors } from '~/constants/themes';
|
||||
import { useTheme } from '~/utils/providers/ThemeProvider';
|
||||
|
||||
import styles from './styles.module.scss';
|
||||
|
||||
interface ThemeSwitcherProps {}
|
||||
|
||||
const ThemeSwitcher: FC<ThemeSwitcherProps> = () => {
|
||||
const { theme, setTheme } = useTheme();
|
||||
|
||||
return (
|
||||
<Group horizontal>
|
||||
{Object.entries(themeColors).map(([id, item]) => (
|
||||
<Card
|
||||
key={id}
|
||||
className={classNames(styles.card, {
|
||||
[styles.active]: theme === id,
|
||||
})}
|
||||
style={{ background: item.background }}
|
||||
role="button"
|
||||
onClick={() => setTheme(id as Theme)}
|
||||
>
|
||||
<Group>
|
||||
<Group horizontal>
|
||||
{item.colors.map((color) => (
|
||||
<div
|
||||
key={color}
|
||||
className={styles.sample}
|
||||
style={{ background: color }}
|
||||
/>
|
||||
))}
|
||||
</Group>
|
||||
<div className={styles.title}>{item.name}</div>
|
||||
</Group>
|
||||
</Card>
|
||||
))}
|
||||
</Group>
|
||||
);
|
||||
};
|
||||
|
||||
export { ThemeSwitcher };
|
Loading…
Add table
Add a link
Reference in a new issue