mandyRed constant

FlexSchemeData const mandyRed

Mandy red and Viking blue inspired colors based FlexSchemeData.

Implementation

static const FlexSchemeData mandyRed = FlexSchemeData(
  name: mandyRedName,
  description: mandyRedDescription,
  light: FlexSchemeColor(
    primary: mandyRedLightPrimary,
    primaryContainer: mandyRedLightPrimaryContainer,
    secondary: mandyRedLightSecondary,
    secondaryContainer: mandyRedLightSecondaryContainer,
    tertiary: mandyRedLightTertiary,
    tertiaryContainer: mandyRedLightTertiaryContainer,
    appBarColor: mandyRedLightTertiary,
    error: materialLightErrorHc,
    swapOnMaterial3: true,
  ),
  dark: FlexSchemeColor(
    primary: mandyRedDarkPrimary,
    primaryContainer: mandyRedDarkPrimaryContainer,
    secondary: mandyRedDarkSecondary,
    secondaryContainer: mandyRedDarkSecondaryContainer,
    tertiary: mandyRedDarkTertiary,
    tertiaryContainer: mandyRedDarkTertiaryContainer,
    appBarColor: mandyRedDarkTertiary,
    error: materialDarkError,
    swapOnMaterial3: true,
  ),
);