Method 1 — Sample a single pixel (most accurate)
A pixel-sampling tool reads the exact stored value of the pixel under your cursor. For flat areas this is the true color of the artwork. For edges, gradients and JPEG artefacts it can vary by a few units per pixel, so sample the centre of a flat region.
- Best for: logos, flat illustrations, UI screenshots, solid backgrounds
- Watch out for: anti-aliased edges, text, gradients and JPEG noise
Method 2 — Extract a palette (best for photos)
When the image is a photograph, no single pixel represents it. A palette extractor clusters the pixels and ranks the clusters by coverage, giving you the colors that carry the image's mood rather than a random sample.
Method 3 — Use the browser's own eyedropper
Modern browsers expose an EyeDropper API in some developer tools, and every OS has a screen magnifier with a colour readout. These sample what is on screen after your display's color profile has been applied, so the number can differ slightly from the file itself.
Method 4 — Guess from a name or a wheel
Matching by name ('it looked like teal') or finding a similar color on a wheel is fast but approximate. Use a name finder to get a concrete value, then confirm it against the image.
Why two tools can report different colors
Screenshots and exported images often carry a colour profile. If one tool reads the file's stored values (sRGB) and another reads the screen after a wide-gamut profile is applied (Display P3), the same pixel reports different numbers. For work that must match exactly, export to sRGB and sample the flat centre of a region.