Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

General Discussion

Stage 3 – Speeding up Workflow with Sass

Question:

Set the background of the <a> tag to be a 10% desaturated version of the variable, using the desaturate function. (HINT: desaturate works a lot like the lighten function - taking a color, then a percentage!) https://teamtreehouse.com/forum/stage-3-speeding-up-workflow-with-sass-2# My code:

``$complement: complement (red);

a { color: lighten(red, 5%); background: desaturate($complement, 10%); }

I keep getting an error: Oops! It looks like Task 1 is no longer passing.

ANy help would be appreciated. Thanks