ChromaWell

Color Picker

Pick a color visually and read off every format at once — hex, RGB, HSL, HSV, CMYK, Lab, OKLCH, plus its nearest named colors from our 1,094-color dataset.

HEX
#7C6CF6
RGB
rgb(124, 108, 246)

How it works

The picker uses the browser's native HTML `<input type="color">` element, which every modern browser renders as an OS-level color-selection UI (a saturation/lightness square plus a hue slider on most platforms) — ChromaWell doesn't reimplement the picker UI itself, it wires the native picker's output hex value into the same conversion and nearest-name pipeline used across every other page on the site, so the values you read off match what you'd get by typing the same hex into the converter directly. Relying on the native input rather than a custom-built picker widget also means the tool inherits each OS's accessibility support for free — keyboard navigation, screen-reader labeling, and touch-target sizing are handled by the browser and operating system rather than needing separate implementation and testing here.

Worked example

Drag the picker to a warm coral tone and it might land on #FF7F6B — the panel immediately shows RGB(255, 127, 107), HSL(6°, 100%, 71%), and nearest named colors ranked by Delta-E distance (likely 'Salmon' or 'LightSalmon' from the CSS set, both genuinely close matches in Lab space rather than just similar-looking on screen). Pick a deeply desaturated color instead — a near-neutral warm gray around #A39A8F — and the nearest-name results shift entirely to the Tan/Wheat/BurlyWood cluster instead, illustrating how the nearest-name ranking responds to real perceptual distance rather than only to hue: a small saturation change can move the top match into a completely different named-color family.

When to use this tool

The picker is the fastest path in when you're starting from a visual impression rather than a known value — you've seen a color you like somewhere and want to identify and convert it, rather than starting from a hex code someone already gave you. It's also a quick way to explore how a lightness or saturation change affects WCAG contrast in real time before committing to a value, since dragging the picker updates every computed format simultaneously rather than requiring a re-conversion each time you adjust. If you already have a specific hex or RGB value in hand, the Color Converter or Hex to RGB tools skip the picking step entirely and get you straight to the conversion table.

Precision & accuracy

The native browser picker returns an exact 6-digit hex value with no ambiguity, but be aware that what you see on screen while dragging the picker is subject to your own monitor's color calibration and gamut — the hex value itself is exact and portable, but its visual appearance can shift slightly between an uncalibrated laptop display and a color-managed professional monitor, which is a display-hardware limitation, not a limitation of the picker or the underlying math. A related caveat: the native picker's own internal UI (the saturation/lightness gradient square) is itself rendered by the browser/OS and isn't guaranteed to be pixel-identical across Chrome, Firefox, Safari, and mobile browsers, so if you're trying to precisely reproduce a color you saw in a screenshot from a different browser's picker, typing the value directly is more reliable than trying to visually match the gradient position.

FAQ

Can I type a value instead of using the picker?

Yes — the text input and the native color picker stay in sync in both directions, so typing a hex code moves the picker and vice versa.

Why does the native picker look different on my device?

Each operating system and browser renders its own native color-picker UI (macOS, Windows, and mobile browsers all differ) — ChromaWell reads whatever hex value it returns, so the underlying math is identical regardless of which picker UI you see.

Does the picker support alpha/transparency?

The native HTML color input is opaque-only (no alpha channel) — for translucent colors, adjust the alpha value separately after picking the base color.

Does the picker work on touchscreens?

Yes — the native input type='color' element opens the OS's own touch-friendly color picker UI on mobile browsers, the same way it opens a desktop picker on a mouse-driven browser.

Can I use my keyboard to fine-tune the picked color?

Yes — once the native picker panel is open, most browsers support arrow-key nudging within the saturation/lightness square and the hue slider, which is more precise than dragging with a mouse for small adjustments.

Does the picker remember recently picked colors?

Some browsers' native color pickers include a recent-colors swatch row as part of their own OS-level UI, independent of anything ChromaWell stores — that history lives in the browser/OS, not on this site, consistent with the picker never sending your picks to a server.