dellGenoa constant

FlexSchemeData const dellGenoa

A dell, axolotl and genoa greens color scheme set found in an image in the Material 3 design guide here.

Implementation

static const FlexSchemeData dellGenoa = FlexSchemeData(
  name: dellGenoaGreenName,
  description: dellGenoaGreenDescription,
  light: FlexSchemeColor(
    primary: dellGenoaGreenLightPrimary,
    primaryContainer: dellGenoaGreenLightPrimaryContainer,
    secondary: dellGenoaGreenLightSecondary,
    secondaryContainer: dellGenoaGreenLightSecondaryContainer,
    tertiary: dellGenoaGreenLightTertiary,
    tertiaryContainer: dellGenoaGreenLightTertiaryContainer,
    appBarColor: dellGenoaGreenLightTertiary,
    error: material3LightError,
    errorContainer: material3LightErrorContainer,
  ),
  dark: FlexSchemeColor(
    primary: dellGenoaGreenDarkPrimary,
    primaryContainer: dellGenoaGreenDarkPrimaryContainer,
    secondary: dellGenoaGreenDarkSecondary,
    secondaryContainer: dellGenoaGreenDarkSecondaryContainer,
    tertiary: dellGenoaGreenDarkTertiary,
    tertiaryContainer: dellGenoaGreenDarkTertiaryContainer,
    appBarColor: dellGenoaGreenDarkTertiary,
    error: material3DarkError,
    errorContainer: material3DarkErrorContainer,
  ),
);