mallardGreen constant

FlexSchemeData const mallardGreen

Mallard green and Valencia pink colors based FlexSchemeData.

Implementation

static const FlexSchemeData mallardGreen = FlexSchemeData(
  name: mallardGreenName,
  description: mallardGreenDescription,
  light: FlexSchemeColor(
    primary: mallardGreenLightPrimary,
    primaryContainer: mallardGreenLightPrimaryContainer,
    secondary: mallardGreenLightSecondary,
    secondaryContainer: mallardGreenLightSecondaryContainer,
    tertiary: mallardGreenLightTertiary,
    tertiaryContainer: mallardGreenLightTertiaryContainer,
    appBarColor: mallardGreenLightTertiary,
    error: materialLightError,
    swapOnMaterial3: true,
  ),
  dark: FlexSchemeColor(
    primary: mallardGreenDarkPrimary,
    primaryContainer: mallardGreenDarkPrimaryContainer,
    secondary: mallardGreenDarkSecondary,
    secondaryContainer: mallardGreenDarkSecondaryContainer,
    tertiary: mallardGreenDarkTertiary,
    tertiaryContainer: mallardGreenDarkTertiaryContainer,
    appBarColor: mallardGreenDarkTertiary,
    error: materialDarkError,
    swapOnMaterial3: true,
  ),
);