label constant

CupertinoDynamicColor const label

The color for text labels containing primary content, equivalent to UIColor.label.

Implementation

static const CupertinoDynamicColor label = CupertinoDynamicColor(
  debugLabel: 'label',
  color: Color.fromARGB(255, 0, 0, 0),
  darkColor: Color.fromARGB(255, 255, 255, 255),
  highContrastColor: Color.fromARGB(255, 0, 0, 0),
  darkHighContrastColor: Color.fromARGB(255, 255, 255, 255),
  elevatedColor: Color.fromARGB(255, 0, 0, 0),
  darkElevatedColor: Color.fromARGB(255, 255, 255, 255),
  highContrastElevatedColor: Color.fromARGB(255, 0, 0, 0),
  darkHighContrastElevatedColor: Color.fromARGB(255, 255, 255, 255),
);