add color utilities

This commit is contained in:
jeffvli
2025-09-29 03:09:39 -07:00
parent 9cfe396d0f
commit d4b8b12687
4 changed files with 79 additions and 18 deletions
+5
View File
@@ -0,0 +1,5 @@
import { isLightColor as isLightColorMantine } from '@mantine/core';
export const isLightColor = (color: string) => {
return isLightColorMantine(color);
};