lightScheme static method
Implementation
static ColorScheme lightScheme() {
return const ColorScheme(
brightness: Brightness.light,
primary: Color(0xff1f6587),
surfaceTint: Color(0xff1f6587),
onPrimary: Color(0xffffffff),
primaryContainer: Color(0xffc6e7ff),
onPrimaryContainer: Color(0xff004c6b),
secondary: Color(0xff8d4a5b),
onSecondary: Color(0xffffffff),
secondaryContainer: Color(0xffffd9e0),
onSecondaryContainer: Color(0xff713344),
tertiary: Color(0xff64558f),
onTertiary: Color(0xffffffff),
tertiaryContainer: Color(0xffe8ddff),
onTertiaryContainer: Color(0xff4c3e76),
error: Color(0xff904a43),
onError: Color(0xffffffff),
errorContainer: Color(0xffffdad5),
onErrorContainer: Color(0xff73342d),
surface: Color(0xfff6fafe),
onSurface: Color(0xff181c1f),
onSurfaceVariant: Color(0xff41484d),
outline: Color(0xff71787e),
outlineVariant: Color(0xffc1c7ce),
shadow: Color(0xff000000),
scrim: Color(0xff000000),
inverseSurface: Color(0xff2c3134),
inversePrimary: Color(0xff91cef5),
primaryFixed: Color(0xffc6e7ff),
onPrimaryFixed: Color(0xff001e2d),
primaryFixedDim: Color(0xff91cef5),
onPrimaryFixedVariant: Color(0xff004c6b),
secondaryFixed: Color(0xffffd9e0),
onSecondaryFixed: Color(0xff3a0719),
secondaryFixedDim: Color(0xffffb1c2),
onSecondaryFixedVariant: Color(0xff713344),
tertiaryFixed: Color(0xffe8ddff),
onTertiaryFixed: Color(0xff1f1047),
tertiaryFixedDim: Color(0xffcebdfe),
onTertiaryFixedVariant: Color(0xff4c3e76),
surfaceDim: Color(0xffd7dadf),
surfaceBright: Color(0xfff6fafe),
surfaceContainerLowest: Color(0xffffffff),
surfaceContainerLow: Color(0xfff0f4f8),
surfaceContainer: Color(0xffebeef3),
surfaceContainerHigh: Color(0xffe5e8ed),
surfaceContainerHighest: Color(0xffdfe3e7),
);
}