Hex Color Code

3 or 6 digit hex color codes

Pattern

^#?([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$

Matching examples

#ff0000#FFFabc123

Non-matching examples

#gg0000#12345

Breakdown

#?
Optional #
[a-fA-F0-9]{6}
6-digit hex
|[a-fA-F0-9]{3}
Or 3-digit shorthand

Related tools

Other patterns