# Extract color palette from any website

**Use case:** 

Analyze a website URL and export its dominant brand colors as hex codes. Useful for design audits, competitive research, and landing page QA.

## Input

```json
{
  "url": "https://apify.com"
}
```

## Output

```json
{
  "swatch": {
    "label": "Swatch",
    "format": "string"
  },
  "hex": {
    "label": "Hex",
    "format": "string"
  },
  "r": {
    "label": "R",
    "format": "integer"
  },
  "g": {
    "label": "G",
    "format": "integer"
  },
  "b": {
    "label": "B",
    "format": "integer"
  },
  "population": {
    "label": "Population",
    "format": "integer"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Site Color Palette Extractor](https://apify.com/rainminer/site-palette-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/rainminer/site-palette-extractor) to learn more, explore other use cases, and run it yourself.