mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-08 13:00:13 +02:00
6 lines
161 B
TypeScript
6 lines
161 B
TypeScript
import { isLightColor as isLightColorMantine } from '@mantine/core';
|
|
|
|
export const isLightColor = (color: string) => {
|
|
return isLightColorMantine(color);
|
|
};
|