secondarySystemBackground constant

CupertinoDynamicColor const secondarySystemBackground

The color for content layered on top of the main background, equivalent to UIColor.secondarySystemBackground.

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

Implementation

static const CupertinoDynamicColor secondarySystemBackground = CupertinoDynamicColor(
  debugLabel: 'secondarySystemBackground',
  color: Color.fromARGB(255, 242, 242, 247),
  darkColor: Color.fromARGB(255, 28, 28, 30),
  highContrastColor: Color.fromARGB(255, 235, 235, 240),
  darkHighContrastColor: Color.fromARGB(255, 36, 36, 38),
  elevatedColor: Color.fromARGB(255, 242, 242, 247),
  darkElevatedColor: Color.fromARGB(255, 44, 44, 46),
  highContrastElevatedColor: Color.fromARGB(255, 235, 235, 240),
  darkHighContrastElevatedColor: Color.fromARGB(255, 54, 54, 56),
);