grey static method

int grey(
  1. double level
)

Implementation

static int grey(double level) => 232 + (level.clamp(0.0, 1.0) * 23).round();