descent property

TextTheme descent

Implementation

TextTheme get descent {
  var hsv = HSVColor.fromColor(ascent.bodySmall!.color!);
  var hs2 = HSVColor.fromColor(foreground.bodySmall!.color!);
  final gap = hsv.value - hs2.value; //...
  final color = hsv.withValue(hsv.value - gap * .4).toColor();
  return ascent.apply(
    displayColor: color,
    bodyColor: color,
  );
}