bigStone constant

FlexSchemeData const bigStone

Big stone blue and tulip tree yellow colors based FlexSchemeData.

Implementation

static const FlexSchemeData bigStone = FlexSchemeData(
  name: bigStoneName,
  description: bigStoneDescription,
  light: FlexSchemeColor(
    primary: bigStoneLightPrimary,
    primaryContainer: bigStoneLightPrimaryContainer,
    secondary: bigStoneLightSecondary,
    secondaryContainer: bigStoneLightSecondaryContainer,
    tertiary: bigStoneLightTertiary,
    tertiaryContainer: bigStoneLightTertiaryContainer,
    appBarColor: bigStoneLightTertiary,
    error: materialLightError,
  ),
  dark: FlexSchemeColor(
    primary: bigStoneDarkPrimary,
    primaryContainer: bigStoneDarkPrimaryContainer,
    secondary: bigStoneDarkSecondary,
    secondaryContainer: bigStoneDarkSecondaryContainer,
    tertiary: bigStoneDarkTertiary,
    tertiaryContainer: bigStoneDarkTertiaryContainer,
    appBarColor: bigStoneDarkTertiary,
    error: materialDarkError,
  ),
);