A composable color picker for the web
All The Components you need
Huey gives you 10+ components to build the color picker of your needs and customize it to your liking
Your layout, Your styles
Huey gives you the freedom to compose your own color picker
A11y Support
Mobile Friendly
Color Accurate
Wide Gamut
Composable UI
Safely Typed
Not Just UI
Huey also offers a framework-agnostic utility library for color manipulation
index.ts
import { hueyColor } from '@hueycolor/core'
const hex = hueyColor('#ff6b35')
const rgb = hueyColor('rgb(255, 107, 53)')
const hsl = hueyColor('hsl(18, 100%, 60%)')
const oklch = hueyColor('oklch(72% 0.19 45)')
hex.toRgbString()
// → 'rgb(255, 107, 53)'