Sass change-color() Function

You are Here:

Sass change-color() Function

The change-color() function sets one or more properties of a color to new values.

Example

SASS TO CSS CONVERTER
.foo { color: change-color(#6b717f, $red: 100); color: change-color(#d2e1dd, $red: 100, $blue: 50); color: change-color(#998099, $lightness: 30%, $alpha: 0.5); }

Syntax

change-color($color, $red, $green, $blue, $hue, $saturation, $lightness, $alpha)

Parameter Value

ValueTypeExplanation
$colorRequiredSpecifies a color.
$redOptionalSpecifies red color in RGB value. The arguments must be unitless and between 0 and 255 (both are inclusive).
$greenOptionalSpecifies green color in RGB value. The arguments must be unitless and between 0 and 255 (both are inclusive).
$blueOptionalSpecifies blue color in RGB value. The arguments must be unitless and between 0 and 255 (both are inclusive).
$hueOptionalSpecifies the degree to which a stimulus can be described as similar to or different from stimuli that are described as red, green, blue, and yellow. The argument must have either the unit deg or no unit.
$saturationOptionalSpecifies the intensity of color. The arguments must be between 0 and 100% (both are inclusive).
$lightnessOptionalSpecifies the tone of the color. The arguments must be between 0 and 100% (both are inclusive).
$alphaOptionalSpecifies the degree of transparency of a color. The arguments must be between -1 and 1 (both are inclusive).

Return Value

ValueExplanation
colorReturns the changed color.

Reminder

Hi Developers, we almost covered 99.1% of Sass Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in Sass.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author