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 FullWidth() {
return (
<div className="flex min-h-screen w-full items-center justify-center overflow-hidden bg-background p-8">
<div className="w-[400px] space-y-4">
<ColorField fullWidth defaultValue="#10B981" name="color">
<Label>Brand Color</Label>
<ColorField.Group>
<ColorField.Input />
</ColorField.Group>
</ColorField>
<ColorField fullWidth defaultValue="#8B5CF6" name="color-with-suffix">
<Label>Theme Color</Label>
<ColorField.Group>
<ColorField.Input />
</ColorField.Group>
</ColorField>
</div>
</div>
);
}
export { FullWidth };