homemanager-be/src/shared/utils/validator.utils.ts

14 lines
286 B
TypeScript
Raw Normal View History

2023-01-24 19:03:43 +00:00
export const isValidColor = (color: string) => {
if (!color) return false;
if (
!color.startsWith('#') &&
!color.startsWith('rgb(') &&
!color.startsWith('hsl(') &&
!color.startsWith('hsv(')
) {
return false;
}
// TODO: check color values
return true;
};