blue constant

FlexSchemeData const blue

Material blue color scheme based FlexSchemeData.

Implementation

static const FlexSchemeData blue = FlexSchemeData(
  name: blueName,
  description: blueDescription,
  light: FlexSchemeColor(
    primary: blueLightPrimary,
    primaryContainer: blueLightPrimaryContainer,
    secondary: blueLightSecondary,
    secondaryContainer: blueLightSecondaryContainer,
    tertiary: blueLightTertiary,
    tertiaryContainer: blueLightTertiaryContainer,
    appBarColor: blueLightTertiary,
    error: materialLightError,
    swapOnMaterial3: true,
  ),
  dark: FlexSchemeColor(
    primary: blueDarkPrimary,
    primaryContainer: blueDarkPrimaryContainer,
    secondary: blueDarkSecondary,
    secondaryContainer: blueDarkSecondaryContainer,
    tertiary: blueDarkTertiary,
    tertiaryContainer: blueDarkTertiaryContainer,
    appBarColor: blueDarkTertiary,
    error: materialDarkError,
    swapOnMaterial3: true,
  ),
);