orangeM3 constant

FlexSchemeData const orangeM3

A Material 3 orange based color scheme as FlexSchemeData.

Implementation

static const FlexSchemeData orangeM3 = FlexSchemeData(
  name: orangeM3Name,
  description: orangeM3Description,
  light: FlexSchemeColor(
    primary: orangeM3LightPrimary,
    primaryContainer: orangeM3LightPrimaryContainer,
    secondary: orangeM3LightSecondary,
    secondaryContainer: orangeM3LightSecondaryContainer,
    tertiary: orangeM3LightTertiary,
    tertiaryContainer: orangeM3LightTertiaryContainer,
    appBarColor: orangeM3LightTertiary,
    error: material3LightError,
    errorContainer: material3LightErrorContainer,
  ),
  dark: FlexSchemeColor(
    primary: orangeM3DarkPrimary,
    primaryContainer: orangeM3DarkPrimaryContainer,
    secondary: orangeM3DarkSecondary,
    secondaryContainer: orangeM3DarkSecondaryContainer,
    tertiary: orangeM3DarkTertiary,
    tertiaryContainer: orangeM3DarkTertiaryContainer,
    appBarColor: orangeM3DarkTertiary,
    error: material3DarkError,
    errorContainer: material3DarkErrorContainer,
  ),
);