opacify($color, $amount) Also known as: fade_in  
Makes a color more opaque. Takes a color and a number between 0 and 1, and returns a color with the opacity increased by that amount.
  Examples: opacify(rgba(0, 0, 0, 0.5), 0.1) => rgba(0, 0, 0, 0.6)
opacify(rgba(0, 0, 17, 0.8), 0.2) => #001       Parameters:  $color (Color)   $amount (Number) —  The amount to increase the opacity by, between 0 and 1    Returns:  (Color)  Raises:  (ArgumentError) —  if $amount is out of bounds, or either