On Thu, Oct 14, 2010 at 01:32, Rob <[email protected]> wrote:

> Is there any way to suppress the conversion from rgb to hex colours
> which the more recent version of SASS undertakes?


You can hack Sass to output every color in RGB(A) format. You shouldn't have
any problems with this, other than your CSS files are going to be slightly
larger:

require 'sass'
Sass::Script::Color.class_eval { def to_s(opts = {}) rgba_str end }

-- 
You received this message because you are subscribed to the Google Groups 
"Haml" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to [email protected].
For more options, visit this group at http://groups.google.com/group/haml?hl=en.

Reply via email to