tealM3 constant

FlexSchemeData const tealM3

A Material 3 teal based color scheme as FlexSchemeData.

Implementation

static const FlexSchemeData tealM3 = FlexSchemeData(
  name: tealM3Name,
  description: tealM3Description,
  light: FlexSchemeColor(
    primary: tealM3LightPrimary,
    primaryContainer: tealM3LightPrimaryContainer,
    secondary: tealM3LightSecondary,
    secondaryContainer: tealM3LightSecondaryContainer,
    tertiary: tealM3LightTertiary,
    tertiaryContainer: tealM3LightTertiaryContainer,
    appBarColor: tealM3LightTertiary,
    error: material3LightError,
    errorContainer: material3LightErrorContainer,
  ),
  dark: FlexSchemeColor(
    primary: tealM3DarkPrimary,
    primaryContainer: tealM3DarkPrimaryContainer,
    secondary: tealM3DarkSecondary,
    secondaryContainer: tealM3DarkSecondaryContainer,
    tertiary: tealM3DarkTertiary,
    tertiaryContainer: tealM3DarkTertiaryContainer,
    appBarColor: tealM3DarkTertiary,
    error: material3DarkError,
    errorContainer: material3DarkErrorContainer,
  ),
);