Files
Homarr/src/components/layout/useGradient.tsx
2023-07-21 18:08:40 +09:00

14 lines
303 B
TypeScript

import { MantineGradient } from '@mantine/core';
import { useColorTheme } from '../../tools/color';
export const usePrimaryGradient = (): MantineGradient => {
const { primaryColor, secondaryColor } = useColorTheme();
return {
from: primaryColor,
to: secondaryColor,
deg: 145,
};
};