Components
Loading preview...
Color input field with labels, descriptions, validation, and HSL channel editing.
npx shadcn@latest add https://21st.dev/r/hero_ui/heroui-color-fieldimport { ColorField, FieldError, Label } from "@/components/ui/heroui-color-field";
export default function Validation() {
return (
<div className="flex min-h-screen w-full items-center justify-center overflow-hidden bg-background p-8">
<div className="flex flex-col gap-4">
<ColorField isInvalid isRequired className="w-[280px]" name="color">
<Label>Color</Label>
<ColorField.Group>
<ColorField.Input placeholder="#000000" />
</ColorField.Group>
<FieldError>Please enter a valid hex color</FieldError>
</ColorField>
<ColorField isInvalid className="w-[280px]" name="invalid-color">
<Label>Background Color</Label>
<ColorField.Group>
<ColorField.Input defaultValue="not-a-color" />
</ColorField.Group>
<FieldError>Invalid color format. Use hex (e.g., #FF5733)</FieldError>
</ColorField>
</div>
</div>
);
}
export { Validation };