tertiarySystemBackground constant

CupertinoDynamicColor const tertiarySystemBackground

The color for content layered on top of secondary backgrounds, equivalent to UIColor.tertiarySystemBackground.

Typically used for designs that have a white primary background in a light environment.

Implementation

static const CupertinoDynamicColor tertiarySystemBackground = CupertinoDynamicColor(
  debugLabel: 'tertiarySystemBackground',
  color: Color.fromARGB(255, 255, 255, 255),
  darkColor: Color.fromARGB(255, 44, 44, 46),
  highContrastColor: Color.fromARGB(255, 255, 255, 255),
  darkHighContrastColor: Color.fromARGB(255, 54, 54, 56),
  elevatedColor: Color.fromARGB(255, 255, 255, 255),
  darkElevatedColor: Color.fromARGB(255, 58, 58, 60),
  highContrastElevatedColor: Color.fromARGB(255, 255, 255, 255),
  darkHighContrastElevatedColor: Color.fromARGB(255, 68, 68, 70),
);