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,
    primaryVariant: mandyRedLightPrimaryVariant,
    secondary: mandyRedLightSecondary,
    secondaryVariant: mandyRedLightSecondaryVariant,
    appBarColor: mandyRedLightSecondaryVariant,
    error: materialLightErrorHc,
  ),
  dark: FlexSchemeColor(
    primary: mandyRedDarkPrimary,
    primaryVariant: mandyRedDarkPrimaryVariant,
    secondary: mandyRedDarkSecondary,
    secondaryVariant: mandyRedDarkSecondaryVariant,
    appBarColor: mandyRedDarkSecondaryVariant,
    error: materialDarkError,
  ),
);