Files
Homarr/packages/common/src/theme.ts
2024-12-15 15:40:26 +01:00

6 lines
264 B
TypeScript

import type { DefaultMantineColor, MantineColorShade } from "@mantine/core";
import { DEFAULT_THEME } from "@mantine/core";
export const getMantineColor = (color: DefaultMantineColor, shade: MantineColorShade) =>
DEFAULT_THEME.colors[color]?.[shade] ?? "#fff";