yellowM3 constant

FlexSchemeData const yellowM3

A Material 3 yukonGold based color scheme as FlexSchemeData.

Implementation

static const FlexSchemeData yellowM3 = FlexSchemeData(
  name: yellowM3Name,
  description: yellowM3Description,
  light: FlexSchemeColor(
    primary: yellowM3LightPrimary,
    primaryContainer: yellowM3LightPrimaryContainer,
    secondary: yellowM3LightSecondary,
    secondaryContainer: yellowM3LightSecondaryContainer,
    tertiary: yellowM3LightTertiary,
    tertiaryContainer: yellowM3LightTertiaryContainer,
    appBarColor: yellowM3LightTertiary,
    error: material3LightError,
    errorContainer: material3LightErrorContainer,
  ),
  dark: FlexSchemeColor(
    primary: yellowM3DarkPrimary,
    primaryContainer: yellowM3DarkPrimaryContainer,
    secondary: yellowM3DarkSecondary,
    secondaryContainer: yellowM3DarkSecondaryContainer,
    tertiary: yellowM3DarkTertiary,
    tertiaryContainer: yellowM3DarkTertiaryContainer,
    appBarColor: yellowM3DarkTertiary,
    error: material3DarkError,
    errorContainer: material3DarkErrorContainer,
  ),
);