greyLaw constant

FlexSchemeData const greyLaw

Material blue grey and ultra dark purple colors based FlexSchemeData.

Implementation

static const FlexSchemeData greyLaw = FlexSchemeData(
  name: greyLawName,
  description: greyLawDescription,
  light: FlexSchemeColor(
    primary: greyLawLightPrimary,
    primaryContainer: greyLawLightPrimaryContainer,
    secondary: greyLawLightSecondary,
    secondaryContainer: greyLawLightSecondaryContainer,
    tertiary: greyLawLightTertiary,
    tertiaryContainer: greyLawLightTertiaryContainer,
    appBarColor: greyLawLightTertiary,
    error: materialLightErrorHc,
    swapOnMaterial3: true,
  ),
  dark: FlexSchemeColor(
    primary: greyLawDarkPrimary,
    primaryContainer: greyLawDarkPrimaryContainer,
    secondary: greyLawDarkSecondary,
    secondaryContainer: greyLawDarkSecondaryContainer,
    tertiary: greyLawDarkTertiary,
    tertiaryContainer: greyLawDarkTertiaryContainer,
    appBarColor: greyLawDarkTertiary,
    error: materialDarkError,
    swapOnMaterial3: true,
  ),
);