Skip to content

Instantly share code, notes, and snippets.

@vindia
Created August 25, 2015 13:08
Show Gist options
  • Save vindia/ba3dc070bca64cc3c213 to your computer and use it in GitHub Desktop.
Save vindia/ba3dc070bca64cc3c213 to your computer and use it in GitHub Desktop.
Get all the color codes of colors used in your CSS file in a Rails project
grep -R 'color: #' app/assets/stylesheets/* | awk '{print $NF}' | sort | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment