Color Palette From URL

Paste any website link and pull its real brand colors straight out of the live CSS, inline styles, and theme tokens.

Paste any public website URL into the input field and press Extract to pull every HEX, RGB, and HSL value found in the page's CSS and inline styles. Click any swatch to copy it, or export the full palette in your preferred format.

🌐

Enter a website URL on the left and click Extract Palette to see its colors here.

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 style attributes on every element
  • External and inline <style> blocks, including CSS custom properties
  • Every HEX, rgb(), rgba(), hsl(), and hsla() 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:

  1. Send a single brand color to the tint and shade scale generator to build a full 50–950 ramp.
  2. Pipe the palette into the HEX to design token exporter to ship CSS variables, SCSS, or a Tailwind config.
  3. 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.

Frequently Asked Questions