greenM3 constant

FlexSchemeData const greenM3

A Material 3 green based color scheme as FlexSchemeData.

Implementation

static const FlexSchemeData greenM3 = FlexSchemeData(
  name: greenM3Name,
  description: greenM3Description,
  light: FlexSchemeColor(
    primary: greenM3LightPrimary,
    primaryContainer: greenM3LightPrimaryContainer,
    secondary: greenM3LightSecondary,
    secondaryContainer: greenM3LightSecondaryContainer,
    tertiary: greenM3LightTertiary,
    tertiaryContainer: greenM3LightTertiaryContainer,
    appBarColor: greenM3LightTertiary,
    error: material3LightError,
    errorContainer: material3LightErrorContainer,
  ),
  dark: FlexSchemeColor(
    primary: greenM3DarkPrimary,
    primaryContainer: greenM3DarkPrimaryContainer,
    secondary: greenM3DarkSecondary,
    secondaryContainer: greenM3DarkSecondaryContainer,
    tertiary: greenM3DarkTertiary,
    tertiaryContainer: greenM3DarkTertiaryContainer,
    appBarColor: greenM3DarkTertiary,
    error: material3DarkError,
    errorContainer: material3DarkErrorContainer,
  ),
);