mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-02 12:49:20 +01:00
6 lines
264 B
TypeScript
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";
|