systemFill constant

CupertinoDynamicColor const systemFill

An overlay fill color for thin and small shapes, equivalent to UIColor.systemFill.

Implementation

static const CupertinoDynamicColor systemFill = CupertinoDynamicColor(
  debugLabel: 'systemFill',
  color: Color.fromARGB(51, 120, 120, 128),
  darkColor: Color.fromARGB(91, 120, 120, 128),
  highContrastColor: Color.fromARGB(71, 120, 120, 128),
  darkHighContrastColor: Color.fromARGB(112, 120, 120, 128),
  elevatedColor: Color.fromARGB(51, 120, 120, 128),
  darkElevatedColor: Color.fromARGB(91, 120, 120, 128),
  highContrastElevatedColor: Color.fromARGB(71, 120, 120, 128),
  darkHighContrastElevatedColor: Color.fromARGB(112, 120, 120, 128),
);