Launching a SaaS?·Collect waitlist signups before you build — before.run
SandboxPatternsDetectDocs
Web
#color
#css
#hex
#web

Hex Color

CSS hex color code in #RGB or #RRGGBB format (case-insensitive).

CSS preprocessor toolingDesign token validationColor picker inputs
/
/
Test String
5 matches
##'#' — literal character
(…)Group #1Capturing group — captures matched text for reuse or extraction
[…]{6}Character class […]Matches any single character listed in this set — repeated exactly 6 times · {6} — exactly 6 times
||| — alternation: matches expression on left OR right
[…]{3}Character class […]Matches any single character listed in this set — repeated exactly 3 times · {3} — exactly 3 times
Pattern: 32 charsInput: 33 chars
100% client-side · private

Valid Examples

  • #fff
  • #FFF
  • #a3B2c1
  • #000000
  • #FF5733

Invalid Examples

  • #gggggg
  • #12345
  • fff
  • rgb(255,0,0)