green constant

FlexSchemeData const green

Material green and cyan colors based FlexSchemeData.

Implementation

static const FlexSchemeData green = FlexSchemeData(
  name: greenName,
  description: greenDescription,
  light: FlexSchemeColor(
    primary: greenLightPrimary,
    primaryContainer: greenLightPrimaryContainer,
    secondary: greenLightSecondary,
    secondaryContainer: greenLightSecondaryContainer,
    tertiary: greenLightTertiary,
    tertiaryContainer: greenLightTertiaryContainer,
    appBarColor: greenLightTertiary,
    error: materialLightErrorHc,
    swapOnMaterial3: true,
  ),
  dark: FlexSchemeColor(
    primary: greenDarkPrimary,
    primaryContainer: greenDarkPrimaryContainer,
    secondary: greenDarkSecondary,
    secondaryContainer: greenDarkSecondaryContainer,
    tertiary: greenDarkTertiary,
    tertiaryContainer: greenDarkTertiaryContainer,
    appBarColor: greenDarkTertiary,
    error: materialDarkError,
    swapOnMaterial3: true,
  ),
);