Created
August 25, 2015 13:08
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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