Color Wordlist Github ((free)) · Plus

import webcolors css_colors = webcolors.CSS3_NAMES_TO_HEX with open('my-colors.txt', 'w') as f: for name, hexcode in css_colors.items(): f.write(f"name,hexcode\n")

# Extract all hex values jq '.[] | .hex' color-names.json > hex-values.txt jq -r 'to_entries[] | "--(.key): (.value.hex);"' color-names.json > colors.css Case 2: Fuzz a color parameter (bug bounty) ffuf -u https://example.com/api?color=FUZZ -w SecLists/Discovery/Web-Content/common-colors.txt Case 3: Create a terminal theme # Pull ANSI codes from jonas/ansi-colors curl -s https://raw.githubusercontent.com/jonas/ansi-colors/main/index.js | grep "colors\[" What to Look For in a Quality Color Wordlist | Feature | Why it matters | |---------|----------------| | Multiple formats | JSON for web, CSV for Excel, TXT for fuzzing | | De-duplicated | Prevents repeated hex codes | | Licensed | MIT or CC0 – avoid GPL if proprietary | | Versioned | Color standards change (e.g., Pantone to HEX mapping) | Building Your Own Color Wordlist If the existing lists don’t fit your need (e.g., you want only “pastel” colors), use this Python snippet: color wordlist github