shark constant

FlexSchemeData const shark

Shark grey and orange ecstasy colors based FlexSchemeData.

Implementation

static const FlexSchemeData shark = FlexSchemeData(
  name: sharkName,
  description: sharkDescription,
  light: FlexSchemeColor(
    primary: sharkLightPrimary,
    primaryContainer: sharkLightPrimaryContainer,
    secondary: sharkLightSecondary,
    secondaryContainer: sharkLightSecondaryContainer,
    tertiary: sharkLightTertiary,
    tertiaryContainer: sharkLightTertiaryContainer,
    appBarColor: sharkLightTertiary,
    error: materialLightError,
    swapOnMaterial3: true,
  ),
  dark: FlexSchemeColor(
    primary: sharkDarkPrimary,
    primaryContainer: sharkDarkPrimaryContainer,
    secondary: sharkDarkSecondary,
    secondaryContainer: sharkDarkSecondaryContainer,
    tertiary: sharkDarkTertiary,
    tertiaryContainer: sharkDarkTertiaryContainer,
    appBarColor: sharkDarkTertiary,
    error: materialDarkError,
    swapOnMaterial3: true,
  ),
);