colorScheme property

ColorScheme get colorScheme

Color scheme for the Kohler brand

Implementation

static ColorScheme get colorScheme => _createColorScheme(
      _createBaseColorScheme(
        brightness: Brightness.light,
        primaryColor: energyBlue,
        secondaryColor: secondaryBlue,
        tertiaryColor: lightAccentGrey,
      ).copyWith(
        primaryContainer: lightBlueContainer,
        onPrimaryContainer: lightOnSurfaceGrey,
        secondaryContainer: lightBlueSecondaryContainer,
        onSecondaryContainer: Colors.black,
        tertiaryContainer: Colors.white.withOpacity(0.9),
        onTertiaryContainer: Colors.black,
        surface: Colors.white,
        onSurface: Colors.black,
        // previously ColorScheme.background
        surfaceContainerLowest: const Color(0xfff9f9f9),
        // previously AppColors.backgroundAlt
        surfaceContainerLow: const Color(0xffeeeeee),
        // previously ColorScheme.surfaceVariant
        surfaceContainerHighest: darkOnSurfaceGrey,
        inverseSurface: Colors.black,
        onInverseSurface: Colors.white,
        shadow: Colors.black38,
        error: AppColors.light().red,
        onError: Colors.white,
      ),
    );