Find and extract all hex color codes from your text with one click
Remove duplicates
: Show each unique color only onceStandardize format
: Convert all codes to uppercaseInclude short form
: Include 3-digit hex codes (#abc)Show color previews
: Display visual color swatchesBefore (CSS with Colors) | After (Extracted Colors) |
---|---|
body { background: #ffffff; color: #333333; } .button { background: #007bff; border: 1px solid #0056b3; } .header { background: #f8f9fa; border-bottom: 1px solid #e9ecef; } | #FFFFFF #333333 #007BFF #0056B3 #F8F9FA #E9ECEF |
Hex color codes are hexadecimal values that represent colors in web design and development:
Each pair of digits represents the red, green, and blue components of the color, with values from 00 to FF (0 to 255 in decimal).