lightBlue static method

ColorScheme lightBlue()

Implementation

static ColorScheme lightBlue() {
	return ColorScheme(
		brightness: Brightness.light,
		background: const HSLColor.fromAHSL(1, 0.0, 0.0, 1.0).toColor(),
		foreground: const HSLColor.fromAHSL(1, 222.2, 0.84, 0.05).toColor(),
		card: const HSLColor.fromAHSL(1, 0.0, 0.0, 1.0).toColor(),
		cardForeground: const HSLColor.fromAHSL(1, 222.2, 0.84, 0.05).toColor(),
		popover: const HSLColor.fromAHSL(1, 0.0, 0.0, 1.0).toColor(),
		popoverForeground: const HSLColor.fromAHSL(1, 222.2, 0.84, 0.05).toColor(),
		primary: const HSLColor.fromAHSL(1, 221.2, 0.83, 0.53).toColor(),
		primaryForeground: const HSLColor.fromAHSL(1, 210.0, 0.4, 0.98).toColor(),
		secondary: const HSLColor.fromAHSL(1, 210.0, 0.4, 0.96).toColor(),
		secondaryForeground: const HSLColor.fromAHSL(1, 222.2, 0.47, 0.11).toColor(),
		muted: const HSLColor.fromAHSL(1, 210.0, 0.4, 0.96).toColor(),
		mutedForeground: const HSLColor.fromAHSL(1, 215.4, 0.16, 0.47).toColor(),
		accent: const HSLColor.fromAHSL(1, 210.0, 0.4, 0.96).toColor(),
		accentForeground: const HSLColor.fromAHSL(1, 222.2, 0.47, 0.11).toColor(),
		destructive: const HSLColor.fromAHSL(1, 0.0, 0.84, 0.6).toColor(),
		destructiveForeground: const HSLColor.fromAHSL(1, 210.0, 0.4, 0.98).toColor(),
		border: const HSLColor.fromAHSL(1, 214.3, 0.32, 0.91).toColor(),
		input: const HSLColor.fromAHSL(1, 214.3, 0.32, 0.91).toColor(),
		ring: const HSLColor.fromAHSL(1, 221.2, 0.83, 0.53).toColor(),
		chart1: const HSLColor.fromAHSL(1, 12.0, 0.76, 0.61).toColor(),
		chart2: const HSLColor.fromAHSL(1, 173.0, 0.58, 0.39).toColor(),
		chart3: const HSLColor.fromAHSL(1, 197.0, 0.37, 0.24).toColor(),
		chart4: const HSLColor.fromAHSL(1, 43.0, 0.74, 0.66).toColor(),
		chart5: const HSLColor.fromAHSL(1, 27.0, 0.87, 0.67).toColor(),
	);
}