Files
Homarr/src/components/layout/useGradient.tsx

14 lines
303 B
TypeScript
Raw Normal View History

2022-12-04 18:45:14 +01:00
import { MantineGradient } from '@mantine/core';
2023-07-21 18:08:40 +09:00
2022-12-04 18:45:14 +01:00
import { useColorTheme } from '../../tools/color';
export const usePrimaryGradient = (): MantineGradient => {
const { primaryColor, secondaryColor } = useColorTheme();
return {
from: primaryColor,
to: secondaryColor,
deg: 145,
};
};