interpolateGreys function Sequential schemes

String interpolateGreys(
  1. num t
)

Given a number t in the range [0,1], returns the corresponding color from the "Greys" sequential color scheme represented as an RGB string.

Implementation

String interpolateGreys(num t) => _interpolateGreys(t);