red constant

FlexSchemeData const red

Material red and pink colors based FlexSchemeData.

Implementation

static const FlexSchemeData red = FlexSchemeData(
  name: redName,
  description: redDescription,
  light: FlexSchemeColor(
    primary: redLightPrimary,
    primaryContainer: redLightPrimaryContainer,
    secondary: redLightSecondary,
    secondaryContainer: redLightSecondaryContainer,
    tertiary: redLightTertiary,
    tertiaryContainer: redLightTertiaryContainer,
    appBarColor: redLightTertiary,
    error: materialLightErrorHc,
    swapOnMaterial3: true,
  ),
  dark: FlexSchemeColor(
    primary: redDarkPrimary,
    primaryContainer: redDarkPrimaryContainer,
    secondary: redDarkSecondary,
    secondaryContainer: redDarkSecondaryContainer,
    tertiary: redDarkTertiary,
    tertiaryContainer: redDarkTertiaryContainer,
    appBarColor: redDarkTertiary,
    error: materialDarkError,
    swapOnMaterial3: true,
  ),
);