blended(withFraction:of:)
Creates a new color object whose component values are a weighted sum of the current color object and the specified color object’s.
Declaration
func blended(withFraction fraction: CGFloat, of color: NSColor) -> NSColor?Parameters
- fraction:
The amount of the color to blend with the receiver’s color. The method converts
colorand a copy of the receiver to RGB, and then sets each component of the returned color tofractionofcolor‘s value plus 1 –fractionof the receiver’s. - color:
The color to blend with the receiver’s color.
Return Value
The resulting color object or nil if the colors can’t be converted.