Spaces:
Sleeping
Sleeping
File size: 17,555 Bytes
d13fef9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 | """
Agent 1B: Firecrawl CSS Extractor
Design System Extractor v2
Persona: CSS Deep Diver
Responsibilities:
- Fetch and parse all CSS files from a website
- Extract colors from CSS rules, variables, and values
- Bypass CORS restrictions by fetching CSS directly
- Complement Playwright extraction with deeper CSS analysis
"""
import re
import asyncio
from typing import Optional, Callable
from datetime import datetime
# Firecrawl for web scraping
try:
from firecrawl import FirecrawlApp
FIRECRAWL_AVAILABLE = True
except ImportError:
FIRECRAWL_AVAILABLE = False
from core.color_utils import (
parse_color,
get_contrast_with_white,
get_contrast_with_black,
)
class FirecrawlExtractor:
"""
Extracts colors from CSS files using Firecrawl.
This complements the Playwright extraction by:
1. Fetching all linked CSS files
2. Parsing inline <style> blocks
3. Extracting CSS variables
4. Finding all color values in CSS rules
"""
def __init__(self, api_key: Optional[str] = None):
"""
Initialize Firecrawl extractor.
Args:
api_key: Firecrawl API key (optional for free tier)
"""
self.api_key = api_key
self.colors: dict[str, dict] = {}
self.css_variables: dict[str, str] = {}
self.errors: list[str] = []
self.warnings: list[str] = []
self.stats = {
"css_files_parsed": 0,
"style_blocks_parsed": 0,
"colors_found": 0,
"css_variables_found": 0,
}
# Color regex pattern
self.color_regex = re.compile(
r'#[0-9a-fA-F]{3,8}|'
r'rgb\(\s*\d+\s*,\s*\d+\s*,\s*\d+\s*\)|'
r'rgba\(\s*\d+\s*,\s*\d+\s*,\s*\d+\s*,\s*[\d.]+\s*\)|'
r'hsl\(\s*\d+\s*,\s*[\d.]+%?\s*,\s*[\d.]+%?\s*\)|'
r'hsla\(\s*\d+\s*,\s*[\d.]+%?\s*,\s*[\d.]+%?\s*,\s*[\d.]+\s*\)',
re.IGNORECASE
)
# CSS variable pattern
self.css_var_regex = re.compile(
r'--[\w-]+\s*:\s*([^;]+)',
re.IGNORECASE
)
def _extract_colors_from_css(self, css_text: str, source: str = "css") -> list[dict]:
"""Extract all color values from CSS text."""
colors = []
# Find all color values
matches = self.color_regex.findall(css_text)
for match in matches:
colors.append({
"value": match.strip(),
"source": source,
"context": "firecrawl-css",
})
return colors
def _extract_css_variables(self, css_text: str) -> dict[str, str]:
"""Extract CSS variables from CSS text."""
variables = {}
matches = self.css_var_regex.findall(css_text)
for match in matches:
# Get variable name and value
var_match = re.search(r'(--[\w-]+)\s*:\s*([^;]+)', css_text)
if var_match:
var_name = var_match.group(1)
var_value = var_match.group(2).strip()
variables[var_name] = var_value
# More precise extraction
for match in re.finditer(r'(--[\w-]+)\s*:\s*([^;]+);', css_text):
var_name = match.group(1)
var_value = match.group(2).strip()
variables[var_name] = var_value
return variables
def _process_color(self, color_value: str) -> Optional[str]:
"""Process and normalize a color value to hex."""
parsed = parse_color(color_value)
if parsed:
return parsed.hex
return None
def _aggregate_color(self, color_data: dict):
"""Aggregate a color into the collection."""
hex_value = self._process_color(color_data.get("value", ""))
if not hex_value:
return
if hex_value not in self.colors:
contrast_white = get_contrast_with_white(hex_value)
contrast_black = get_contrast_with_black(hex_value)
self.colors[hex_value] = {
"value": hex_value,
"frequency": 0,
"contexts": [],
"sources": [],
"contrast_white": round(contrast_white, 2),
"contrast_black": round(contrast_black, 2),
}
# Update frequency and context
self.colors[hex_value]["frequency"] += 1
context = color_data.get("context", "")
if context and context not in self.colors[hex_value]["contexts"]:
self.colors[hex_value]["contexts"].append(context)
source = color_data.get("source", "")
if source and source not in self.colors[hex_value]["sources"]:
self.colors[hex_value]["sources"].append(source)
async def extract_with_firecrawl(
self,
url: str,
log_callback: Optional[Callable[[str], None]] = None
) -> dict:
"""
Extract colors using Firecrawl API.
Args:
url: Website URL to analyze
log_callback: Optional callback for logging progress
Returns:
Dict with extracted colors and stats
"""
def log(msg: str):
if log_callback:
log_callback(msg)
if not FIRECRAWL_AVAILABLE:
log("β οΈ Firecrawl not available, skipping...")
return {"colors": {}, "css_variables": {}, "stats": self.stats}
log("")
log("=" * 60)
log("π₯ FIRECRAWL CSS EXTRACTION")
log("=" * 60)
log("")
try:
# Initialize Firecrawl
if self.api_key:
app = FirecrawlApp(api_key=self.api_key)
else:
# Try without API key (limited functionality)
log(" β οΈ No Firecrawl API key - using fallback method")
return await self._fallback_css_extraction(url, log_callback)
log(f" π Scraping: {url}")
# Scrape the page
result = app.scrape_url(
url,
params={
'formats': ['html'],
'includeTags': ['style', 'link'],
}
)
if not result:
log(" β Firecrawl returned no results")
return {"colors": {}, "css_variables": {}, "stats": self.stats}
html_content = result.get('html', '') or result.get('content', '')
log(f" β
Page scraped ({len(html_content)} chars)")
# Extract <style> blocks
log(" π Parsing <style> blocks...")
style_blocks = re.findall(r'<style[^>]*>(.*?)</style>', html_content, re.DOTALL | re.IGNORECASE)
for i, block in enumerate(style_blocks):
colors = self._extract_colors_from_css(block, f"style-block-{i}")
for color in colors:
self._aggregate_color(color)
variables = self._extract_css_variables(block)
self.css_variables.update(variables)
self.stats["style_blocks_parsed"] += 1
log(f" Found {len(style_blocks)} style blocks")
# Extract CSS file URLs
log(" π Finding linked CSS files...")
css_urls = re.findall(r'href=["\']([^"\']*\.css[^"\']*)["\']', html_content, re.IGNORECASE)
log(f" Found {len(css_urls)} CSS files")
# Fetch and parse each CSS file
for css_url in css_urls[:15]: # Limit to 15 files
try:
# Make URL absolute
if css_url.startswith('//'):
css_url = 'https:' + css_url
elif css_url.startswith('/'):
from urllib.parse import urlparse
parsed = urlparse(url)
css_url = f"{parsed.scheme}://{parsed.netloc}{css_url}"
elif not css_url.startswith('http'):
from urllib.parse import urljoin
css_url = urljoin(url, css_url)
log(f" π Fetching: {css_url[:60]}...")
# Fetch CSS file
css_result = app.scrape_url(css_url, params={'formats': ['rawHtml']})
css_content = css_result.get('rawHtml', '') or css_result.get('content', '')
if css_content:
colors = self._extract_colors_from_css(css_content, css_url.split('/')[-1])
for color in colors:
self._aggregate_color(color)
variables = self._extract_css_variables(css_content)
self.css_variables.update(variables)
self.stats["css_files_parsed"] += 1
log(f" β
Parsed ({len(colors)} colors)")
except Exception as e:
log(f" β οΈ Failed: {str(e)[:50]}")
self.warnings.append(f"Failed to fetch {css_url}: {str(e)}")
# Process CSS variables that contain colors
log(" π¨ Processing CSS variables...")
for var_name, var_value in self.css_variables.items():
if self.color_regex.match(var_value.strip()):
self._aggregate_color({
"value": var_value.strip(),
"source": f"css-var:{var_name}",
"context": "css-variable",
})
self.stats["css_variables_found"] += 1
self.stats["colors_found"] = len(self.colors)
# Log summary
log("")
log("π FIRECRAWL RESULTS:")
log(f" CSS files parsed: {self.stats['css_files_parsed']}")
log(f" Style blocks parsed: {self.stats['style_blocks_parsed']}")
log(f" CSS variables found: {self.stats['css_variables_found']}")
log(f" Unique colors found: {self.stats['colors_found']}")
log("")
# Show top colors found
if self.colors:
sorted_colors = sorted(self.colors.items(), key=lambda x: -x[1]['frequency'])[:10]
log(" π¨ Top colors found:")
for hex_val, data in sorted_colors:
log(f" {hex_val} (used {data['frequency']}x)")
return {
"colors": self.colors,
"css_variables": self.css_variables,
"stats": self.stats,
}
except Exception as e:
log(f" β Firecrawl error: {str(e)}")
self.errors.append(f"Firecrawl error: {str(e)}")
return await self._fallback_css_extraction(url, log_callback)
async def _fallback_css_extraction(
self,
url: str,
log_callback: Optional[Callable[[str], None]] = None
) -> dict:
"""
Fallback CSS extraction using httpx (no Firecrawl API key needed).
"""
def log(msg: str):
if log_callback:
log_callback(msg)
log("")
log("π Using fallback CSS extraction (httpx)...")
try:
import httpx
async with httpx.AsyncClient(timeout=30.0, follow_redirects=True) as client:
# Fetch main page
log(f" π Fetching: {url}")
response = await client.get(url)
html_content = response.text
log(f" β
Page fetched ({len(html_content)} chars)")
# Extract <style> blocks
log(" π Parsing <style> blocks...")
style_blocks = re.findall(r'<style[^>]*>(.*?)</style>', html_content, re.DOTALL | re.IGNORECASE)
for i, block in enumerate(style_blocks):
colors = self._extract_colors_from_css(block, f"style-block-{i}")
for color in colors:
self._aggregate_color(color)
variables = self._extract_css_variables(block)
self.css_variables.update(variables)
self.stats["style_blocks_parsed"] += 1
log(f" Found {len(style_blocks)} style blocks")
# Extract CSS file URLs
log(" π Finding linked CSS files...")
css_urls = re.findall(r'href=["\']([^"\']*\.css[^"\']*)["\']', html_content, re.IGNORECASE)
log(f" Found {len(css_urls)} CSS files")
# Fetch and parse each CSS file
for css_url in css_urls[:15]:
try:
# Make URL absolute
if css_url.startswith('//'):
css_url = 'https:' + css_url
elif css_url.startswith('/'):
from urllib.parse import urlparse
parsed = urlparse(url)
css_url = f"{parsed.scheme}://{parsed.netloc}{css_url}"
elif not css_url.startswith('http'):
from urllib.parse import urljoin
css_url = urljoin(url, css_url)
log(f" π Fetching: {css_url[:60]}...")
css_response = await client.get(css_url)
css_content = css_response.text
if css_content:
colors = self._extract_colors_from_css(css_content, css_url.split('/')[-1])
for color in colors:
self._aggregate_color(color)
variables = self._extract_css_variables(css_content)
self.css_variables.update(variables)
self.stats["css_files_parsed"] += 1
log(f" β
Parsed ({len(colors)} colors)")
except Exception as e:
log(f" β οΈ Failed: {str(e)[:50]}")
self.warnings.append(f"Failed to fetch {css_url}: {str(e)}")
# Process CSS variables
log(" π¨ Processing CSS variables...")
for var_name, var_value in self.css_variables.items():
if self.color_regex.match(var_value.strip()):
self._aggregate_color({
"value": var_value.strip(),
"source": f"css-var:{var_name}",
"context": "css-variable",
})
self.stats["css_variables_found"] += 1
self.stats["colors_found"] = len(self.colors)
# Log summary
log("")
log("π FALLBACK EXTRACTION RESULTS:")
log(f" CSS files parsed: {self.stats['css_files_parsed']}")
log(f" Style blocks parsed: {self.stats['style_blocks_parsed']}")
log(f" CSS variables found: {self.stats['css_variables_found']}")
log(f" Unique colors found: {self.stats['colors_found']}")
log("")
# Show top colors
if self.colors:
sorted_colors = sorted(self.colors.items(), key=lambda x: -x[1]['frequency'])[:10]
log(" π¨ Top colors found:")
for hex_val, data in sorted_colors:
log(f" {hex_val} (used {data['frequency']}x)")
return {
"colors": self.colors,
"css_variables": self.css_variables,
"stats": self.stats,
}
except Exception as e:
log(f" β Fallback extraction failed: {str(e)}")
self.errors.append(f"Fallback extraction failed: {str(e)}")
return {"colors": {}, "css_variables": {}, "stats": self.stats}
async def extract_css_colors(
url: str,
api_key: Optional[str] = None,
log_callback: Optional[Callable[[str], None]] = None
) -> dict:
"""
Convenience function to extract CSS colors.
Args:
url: Website URL
api_key: Optional Firecrawl API key
log_callback: Optional logging callback
Returns:
Dict with colors, css_variables, and stats
"""
extractor = FirecrawlExtractor(api_key=api_key)
return await extractor.extract_with_firecrawl(url, log_callback)
|