Command Palette

Search for a command to run...

Docs
Color Picker

A color picker component

Installation

pnpm dlx shadcn@latest add "https://ui.ednesdayw.com/r/color-picker.json"
import { useState } from "react";
import { ColorPicker } from "@/components/ui/color-picker";
 
const Page = () => {
    const [color, setColor] = useState("#4ec4b8");
    return (
        <ColorPicker value={color} onChange={(value) => setColor(value)} />
    );
}

Example

#4ec4b8
#4ec4b880