desaturate
  • References/CSS/Sass/Functions

desaturate($color, $amount) Makes a color less saturated. Takes a color and a number between 0% and 100%, and returns a color

2025-01-10 15:47:30
lighten
  • References/CSS/Sass/Functions

lighten($color, $amount) Makes a color lighter. Takes a color and a number between 0% and 100%

2025-01-10 15:47:30
feature_exists
  • References/CSS/Sass/Functions

feature_exists($feature) Returns whether a feature exists in the current Sass runtime. The

2025-01-10 15:47:30
if
  • References/CSS/Sass/Functions

if($condition, $if-true, $if-false) Returns one of two values, depending on whether or not $condition is true

2025-01-10 15:47:30
percentage
  • References/CSS/Sass/Functions

percentage($number) Converts a unitless number to a percentage.

2025-01-10 15:47:30
@each
  • References/CSS/Sass/@-Rules and Directives

@each The @each directive usually has the form @each $var in <list or map>. $var

2025-01-10 15:47:30
call
  • References/CSS/Sass/Functions

call($name, $args...) Dynamically calls a function. This can call user-defined functions, built-in functions, or plain CSS

2025-01-10 15:47:30
%: placeholder selector
  • References/CSS/Sass/CSS Extensions

Placeholder Selectors: %foo Sass supports a special type of selector called a “placeholder selector”. These look like class and

2025-01-10 15:47:30
join
  • References/CSS/Sass/Functions

join($list1, $list2, $separator:auto) Joins together two lists into one. Unless $separator

2025-01-10 15:47:30
set
  • References/CSS/Sass/Functions

set Return a new list, based on the list provided, but with the nth element changed to the value given.

2025-01-10 15:47:30