module Sass::Script::Functions

def transparentize(color, amount)

Raises:
  • (ArgumentError) - If `color` isn't a color,

Other tags:
    See: #opacify -

Returns:
  • (Color) -

Parameters:
  • amount (Number) --
  • color (Color) --
def transparentize(color, amount)
  adjust(color, amount, :alpha, 0..1, :-)
end