systemBackground constant

CupertinoDynamicColor const systemBackground

The color for the main background of your interface, equivalent to UIColor.systemBackground.

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

Implementation

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