0
0
SASSmarkup~5 mins

Saturate and desaturate in SASS - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the saturate() function do in Sass?
It increases the color's saturation, making the color look more vivid or intense.
Click to reveal answer
beginner
What effect does the desaturate() function have on a color in Sass?
It decreases the color's saturation, making the color look more gray or dull.
Click to reveal answer
beginner
How do you use saturate() in Sass? Provide a simple example.
Example: <br>color: saturate(#6699cc, 20%); <br>This makes the blue color 20% more saturated.
Click to reveal answer
intermediate
What happens if you saturate a fully saturated color in Sass?
The color stays the same because it cannot get more saturated than 100%.
Click to reveal answer
intermediate
Why is controlling saturation useful in web design?
It helps create mood and focus by making colors more vivid or muted, improving user experience and visual hierarchy.
Click to reveal answer
What does desaturate(#ff0000, 50%) do to the color?
AMakes it 50% less saturated (more gray)
BMakes it 50% lighter
CMakes it 50% more red
DMakes it 50% darker
Which Sass function increases color intensity?
Alighten()
Bdesaturate()
Cdarken()
Dsaturate()
If a color is fully desaturated, what color is it?
ABlack
BGray
COriginal color
DWhite
What unit is used to specify saturation change in saturate() and desaturate()?
APercent (%)
BPixels
CDegrees
DEm units
Which Sass function would you use to make a color less vivid?
Alighten()
Bsaturate()
Cdesaturate()
Dadjust-hue()
Explain how saturate() and desaturate() affect colors in Sass and why you might use them.
Think about how colors look more bright or dull.
You got /4 concepts.
    Describe a real-life example where you would use desaturate() in a website design.
    Consider how dull colors can help focus on important content.
    You got /4 concepts.