Generate a color palette from URL in one click
The color palette from URL tool reads any public webpage and pulls out the real colors used in its design — not approximations from a screenshot, but the actual HEX, RGB, and HSL values declared in the site's stylesheets. Drop in a link, and within seconds you get a clean, deduplicated palette that mirrors the brand's production CSS.
Designers use it to study real-world systems. Developers use it to reverse-engineer a competitor's tokens before a redesign. Brand teams use it to audit how consistently their colors are deployed across landing pages, docs, and microsites.
What the extractor actually parses
Unlike image-based pickers, this extractor reads the source rather than guessing from pixels. It looks at:
- The
<meta name="theme-color">tag used by mobile browsers and PWAs - Inline
styleattributes on every element - External and inline
<style>blocks, including CSS custom properties - Every HEX,
rgb(),rgba(),hsl(), andhsla()declaration on the page
Each color is normalized to a canonical HEX, ranked by frequency and prominence, and grouped so near-duplicates collapse into a single representative swatch. The result is the smallest palette that fairly represents the page.
Turn the palette into a usable design system
Extraction is just the start. Once you have the swatches, you can keep working with them inside the same toolkit:
- Send a single brand color to the tint and shade scale generator to build a full 50–950 ramp.
- Pipe the palette into the HEX to design token exporter to ship CSS variables, SCSS, or a Tailwind config.
- Run the result through the palette contrast grid to verify every foreground/background pair against WCAG 2.1 contrast minimums.
When to extract colors from a website
Reach for the color palette from URL tool when you need exact, production-grade values rather than visually similar ones. Common workflows include competitive research, building a moodboard from sites you admire, recovering brand colors from a legacy property whose source files are lost, or quickly seeding a new CSS variable theme from a reference design. If the site uses CSS variables, you'll see those token relationships preserved in the extracted set, making it easy to map them into your own naming convention. For deeper reference on color notation, see the MDN color value docs.