darkScheme static method
Implementation
static ColorScheme darkScheme() {
return const ColorScheme(
brightness: Brightness.dark,
primary: Color(0xff91cef5),
surfaceTint: Color(0xff91cef5),
onPrimary: Color(0xff00344b),
primaryContainer: Color(0xff004c6b),
onPrimaryContainer: Color(0xffc6e7ff),
secondary: Color(0xffffb1c2),
onSecondary: Color(0xff551d2e),
secondaryContainer: Color(0xff713344),
onSecondaryContainer: Color(0xffffd9e0),
tertiary: Color(0xffcebdfe),
onTertiary: Color(0xff35275e),
tertiaryContainer: Color(0xff4c3e76),
onTertiaryContainer: Color(0xffe8ddff),
error: Color(0xffffb4ab),
onError: Color(0xff561e19),
errorContainer: Color(0xff73342d),
onErrorContainer: Color(0xffffdad5),
surface: Color(0xff0f1417),
onSurface: Color(0xffdfe3e7),
onSurfaceVariant: Color(0xffc1c7ce),
outline: Color(0xff8b9298),
outlineVariant: Color(0xff41484d),
shadow: Color(0xff000000),
scrim: Color(0xff000000),
inverseSurface: Color(0xffdfe3e7),
inversePrimary: Color(0xff1f6587),
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(0xff0f1417),
surfaceBright: Color(0xff353a3d),
surfaceContainerLowest: Color(0xff0a0f12),
surfaceContainerLow: Color(0xff181c1f),
surfaceContainer: Color(0xff1c2024),
surfaceContainerHigh: Color(0xff262b2e),
surfaceContainerHighest: Color(0xff313539),
);
}