Random.RandomShade

Extension Method in Random

Declaration

public static Color RandomShade(this Color baseColor, float min = 0F, float max = 1F)

Description

Generates a random shade from the base color. The amount of change in the shade can be constrained between a minimum and maximum range if desired.

Parameters

baseColorThe base color to
minThe minimum amount of change in the shade [0..1] (default=0).
maxThe maximum amount of change in the shade [0..1] (default=1).

Returns

ColorA random shade.