# CSS Hex Color Extractor

**Use case:** 

Extract and normalize website CSS color values to hex for brand audits, design systems, and palette comparison.

## Input

```json
{
  "urls": [
    "https://tailwindcss.com",
    "https://getbootstrap.com"
  ],
  "includeInlineStyles": false,
  "includeNamedColors": false,
  "normalizeColors": true,
  "maxStylesheets": 40,
  "timeoutSecs": 45
}
```

## 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.