On Nov 24, 2004, at 20:13, Allan Odgaard wrote:
I made a quick little command for TextMate that shows a color picker, and inserts the hex value.
Cool! :) Though you may want to mention that it requires Ruby 1.8.
And for those w/o Ruby 1.8 here's a version which uses awk for the formatting:
osascript -e 'tell application "Finder" to activate' -e 'tell application "Finder" to choose color'|tr -d ,|awk '{printf("#%02x%02x%02x", $1/256, $2/256, $3/256)}'