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,
    primaryVariant: greenLightPrimaryVariant,
    secondary: greenLightSecondary,
    secondaryVariant: greenLightSecondaryVariant,
    appBarColor: greenLightSecondaryVariant,
    error: materialLightErrorHc,
  ),
  dark: FlexSchemeColor(
    primary: greenDarkPrimary,
    primaryVariant: greenDarkPrimaryVariant,
    secondary: greenDarkSecondary,
    secondaryVariant: greenDarkSecondaryVariant,
    appBarColor: greenDarkSecondaryVariant,
    error: materialDarkError,
  ),
);