# Competitor Brand Color Audit

**Use case:** 

Compare competitor website palettes by extracting CSS colors, usage counts, source files, normalized hex values, and style properties.

## Input

```json
{
  "urls": [
    "https://slack.com",
    "https://asana.com",
    "https://monday.com"
  ],
  "includeInlineStyles": true,
  "includeNamedColors": true,
  "normalizeColors": true,
  "maxStylesheets": 60,
  "timeoutSecs": 60
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "color": {
    "label": "Color (original)",
    "format": "text"
  },
  "colorNormalized": {
    "label": "Hex",
    "format": "text"
  },
  "format": {
    "label": "Format",
    "format": "text"
  },
  "usageCount": {
    "label": "Usage Count",
    "format": "number"
  },
  "properties": {
    "label": "CSS Properties",
    "format": "text"
  },
  "sources": {
    "label": "Sources",
    "format": "text"
  }
}
```

## About this Actor

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