Answers for "change color with sass"

CSS
0

how to darken a color with sass function

darken($color, $amount)
Posted by: Guest on April-09-2021
0

sass scale color

color.scale($color,
  $red: null, $green: null, $blue: null,
  $saturation: null, $lightness: null,
  $whiteness: null, $blackness: null,
  $alpha: null)
scale-color(...) //=> color

e.g. scale-color($primary, $lightness: -10%)
Posted by: Guest on November-12-2021

Code answers related to "change color with sass"

Browse Popular Code Answers by Language