secondaryLabel constant

CupertinoDynamicColor const secondaryLabel

The color for text labels containing secondary content, equivalent to UIColor.secondaryLabel.

Implementation

static const CupertinoDynamicColor secondaryLabel = CupertinoDynamicColor(
  debugLabel: 'secondaryLabel',
  color: Color.fromARGB(153, 60, 60, 67),
  darkColor: Color.fromARGB(153, 235, 235, 245),
  highContrastColor: Color.fromARGB(173, 60, 60, 67),
  darkHighContrastColor: Color.fromARGB(173, 235, 235, 245),
  elevatedColor: Color.fromARGB(153, 60, 60, 67),
  darkElevatedColor: Color.fromARGB(153, 235, 235, 245),
  highContrastElevatedColor: Color.fromARGB(173, 60, 60, 67),
  darkHighContrastElevatedColor: Color.fromARGB(173, 235, 235, 245),
);