Skip to content

Instantly share code, notes, and snippets.

@abdullah
Created August 28, 2018 08:02
Show Gist options
  • Save abdullah/1b1563434a9037b2c5fffaf5518d4e91 to your computer and use it in GitHub Desktop.
Save abdullah/1b1563434a9037b2c5fffaf5518d4e91 to your computer and use it in GitHub Desktop.
extract color with regex
grep -hoEr 'src' -e '(#([0-9a-f]{3}){1,2}|(rgba|hsla)\(\d{1,3}%?(,\s?\d{1,3}%?){2},\s?(1|0|0?\.\d+)\)|(rgb|hsl)\(\d{1,3}%?(,\s?\d{1,3}%?){2}\))' | sort -t: -u -k1,1 > o.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment