Color Picker
◈ InputsNeumorphic color picker with hue wheel, shade slider, and hex/RGB inputs.
colorpickerinputwheelneumorphic
No preview available
Controls
#ff795b
200
Neumorphic color picker with hue wheel, shade slider, and hex/RGB inputs.
No preview available
Inputs / React Component
Neumorphic color picker with hue wheel, shade slider, and hex/RGB inputs.
Copy the shadcn CLI command below. Replace YOUR_LICENSE_KEY with the license key from your FutureUI account — or log in and it will auto-fill for you.
npx shadcn@latest add "https://futureui.studio/api/registry/color-picker.json?key=YOUR_LICENSE_KEY" import { ColorPicker } from './ColorPicker';
import { useState } from 'react';
export default function Example() {
const [color, setColor] = useState('#8b5cf6');
return (
<ColorPicker
value={color}
onChange={setColor}
showAlpha={true}
wheelSize={200}
presets={['#ef4444', '#f59e0b', '#10b981', '#3b82f6', '#8b5cf6']}
/>
);
}