SASS color methods change vs adjust vs scale

Viewed 127

I have read carefully the SASS Color Module Documentation

But I can't understand the difference between change, adjust, scale color methods, Especially that in many times they return the same value.

Example:

color.adjust(#000, $whiteness: 10%);
color.change(#000, $whiteness: 10%);
color.scale(#000, $whiteness: 10%);

All those methods return: #171717.

Can anyone explain in detail the difference between those three methods?

0 Answers
Related