jungle constant

FlexSchemeData const jungle

Green jungle and rain forest colors based FlexSchemeData.

Implementation

static const FlexSchemeData jungle = FlexSchemeData(
  name: jungleName,
  description: jungleDescription,
  light: FlexSchemeColor(
    primary: jungleLightPrimary,
    primaryContainer: jungleLightPrimaryContainer,
    secondary: jungleLightSecondary,
    secondaryContainer: jungleLightSecondaryContainer,
    tertiary: jungleLightTertiary,
    tertiaryContainer: jungleLightTertiaryContainer,
    appBarColor: jungleLightTertiary,
    error: materialLightErrorHc,
    swapOnMaterial3: true,
  ),
  dark: FlexSchemeColor(
    primary: jungleDarkPrimary,
    primaryContainer: jungleDarkPrimaryContainer,
    secondary: jungleDarkSecondary,
    secondaryContainer: jungleDarkSecondaryContainer,
    tertiary: jungleDarkTertiary,
    tertiaryContainer: jungleDarkTertiaryContainer,
    appBarColor: jungleDarkTertiary,
    error: materialDarkError,
    swapOnMaterial3: true,
  ),
);