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, Label } from "@/components/ui/heroui-color-field";
export default function Variants() {
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 className="w-[280px]" defaultValue="#0485F7" name="primary-color">
<Label>Primary variant</Label>
<ColorField.Group variant="primary">
<ColorField.Input />
</ColorField.Group>
</ColorField>
<ColorField className="w-[280px]" defaultValue="#F43F5E" name="secondary-color">
<Label>Secondary variant</Label>
<ColorField.Group variant="secondary">
<ColorField.Input />
</ColorField.Group>
</ColorField>
</div>
</div>
);
}
export { Variants };