SHADE
Creates a new color by mixing the specified color with black in a given proportion.
Syntax
=SHADE(color, amount)
Arguments
| Argument | Type | Description |
|---|---|---|
| color | Color | The color to shade. |
| amount | Number | The percentage balance point between the given color and black, from 0 to 1. |
Examples
=SHADE("#00ff00", 0.5)→#008000ff
Mixes the color #00ff00ff with black in equal parts.
Updated almost 2 years ago